@import url('https://fonts.googleapis.com/css?family=Asap:400,700&display=swap');
:root {
    /* Colors: */
    --pale-red-table-cell-target-not-met-fae5e8: #FAE5E8;
    --dark-red-target-not-met-a80317: #A80317;
    --pale-blue-demographic-heade-f1f7fe: #F1F7FE;
    --blue-primary-dashboards-4a90e2: #4A90E2;
}
html{
  height: 100%;
}

body {
  background-color: #F5F5F5;
  position: relative;
  height: 100%;
  font-family: 'Asap', sans-serif;
  overflow-x: hidden;
}

body:after{
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 600px 900px;
  border-color: transparent transparent #1A3B59 transparent;
  z-index: 1;
}

h1,h2,h3,h4,h5,h6{
  font-weight: 700;
}

img{
  max-width: 100%;
}

.font-family-body{
    font-family: 'Asap', sans-serif !important;
}

.app-screen{
  display: table;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
}

.app-screen__container{
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}


/*Logo*/
.app-logo-wrapper{
  display: table;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

@media(min-width:768px){
  .app-logo-wrapper{
    min-height: 300px;
  }
}

.app-logo-wrapper__logo{
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  padding-right: 10%;
}

@media(min-width:1200px){
  .app-logo-wrapper__logo{
    padding-right: 0;
  }
}

/*Form*/
.app-form{
  padding: 1em 0;
  position: relative;
}

.app-form:before{
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background: #ccc;
  position: absolute;
  left: -30px;
  top: 0;
}

.app-form__wrapper{
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 2em;
    display: table;
    width: 100%;
    margin: .25em 0 2em 0;
    border-radius: 6px;
    position: relative;
    border: 1px solid #DDDDDD;
    box-shadow: 0 3px 6px 2px rgba(0,0,0,0.09);
}

@media(min-width:768px){
  .app-form__wrapper--lg{
    min-height: 300px;
  }
}

.app-form__wrapper__inner{
  display: table-cell;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.app-form__list{
  margin: 0;
  padding: 0;
}

.app-form__list__item{
  list-style: none;
  margin-bottom: 1em;
}

.app-form__label {
    text-align: left;
    font-size: .8em;
    font: normal normal medium 11px/14px Asap-Medium;
    text-transform: uppercase;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
}

.login-remember{
  margin: 1.5em 0;
  font-size: .95em;
}

.login-remember__label {
    text-align: left;
    font: normal normal normal 12px/15px Asap;
    letter-spacing: 0px;
    color: #4A4A4A;
    opacity: 1;
}

.small-link {
    color: var(--blue-primary-dashboards-4a90e2);
    text-align: left;
    font: normal normal normal 12px/15px Asap;
    letter-spacing: 0px;
    color: #4A90E2;
    opacity: 1;
}
.med-link {
    color: var(--blue-primary-dashboards-4a90e2);
    text-align: left;
    font: normal normal medium 13px/16px Asap;
    letter-spacing: 0px;
    color: #4A90E2;
    opacity: 1;
}
/*Footer*/
.app-footer{
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  text-align: right;
  z-index: 2;
}

.app-footer__logo{
  margin-right: 30px;
  margin-bottom: 30px;
}

/*Logged Out*/
.app-form__desc {
    color: #666666;
    margin: 1em 0 2em 0;
}

.app-form__return-link {
    font-size: .9em;
    color: #666;
    text-decoration: underline;
}

.app-form__logo-img {
    margin-bottom: 2em;
}

/*Bootstrap Overrides*/
a{
  color: #3A7CC5;
}

.alert {
    border-width: 1px;
    display : block
}

.alert-success {
    border-color: rgba(3, 146, 86, 0.6);
}

.alert-danger {
    background: var(--pale-red-table-cell-target-not-met-fae5e8) 0% 0% no-repeat padding-box;
    background: #FAE5E8 0% 0% no-repeat padding-box;
    border: 1px solid #A6091D;
    opacity: 1;
}

.alert-info {
    background: var(--pale-blue-demographic-heade-f1f7fe) 0% 0% no-repeat padding-box;
    background: #F1F7FE 0% 0% no-repeat padding-box;
    border: 1px solid #52A3FC;
    opacity: 1;
}

.icon--failure {
    background-image: url("../assets/images/fail.svg");
}

.icon--success {
    background-image: url("../assets/images/success.svg");
}

/** CSS for above - Force the width for icons */
.alert .alert-icon-col {
    min-width: 25px;
    max-width: 25px;
}

.btn{
  transition: .25s all ease;
}

.btn.btn-primary{
  color: #fff;
  border-color: #4DA1FF;
  background-color: #4DA1FF;
}

.btn.btn-primary:hover,
.btn.btn-primary:active,
.btn.btn-primary:focus{
  border-color: #4183cc;
  background-color: #4183cc;
}

