html{
    font-size:16px;
}
body{
    background-color: #fff;
    min-height: 100dvh;
    display:flex;
    flex-direction: column;
}
.top-nav{
    background-color: #E6EDF5;
    width: 100%;
}
.btn-slant{
    transform: skew(-25deg);
    border-radius: 0;
}
.slant-txt{
    transform: skew(25deg);
    display: inline-block;
}
.prime-green{
    background-color: var(--brandSecondary);
    border-color: var(--brandSecondary);
}
.green-text{
    color: var(--brandSecondary);
}
.prime-blue{
    color: var(--brandPrimary);
}
#jumbo-overlay{
    border: 5px solid var(--brandSecondary);
    width: 35%;
    top:0;
    left:0;
}
.wrap{
    width:100%;
    overflow: hidden;
}
.login-wrap{
    display:flex;
    flex-direction:column;
    justify-content: center;
}
.img, .login-wrap{
    width:100%;
    position:relative;
}
.img{
    height:250px;
}
a:hover{
    color: #d5eeb6;
}
#jumbo-container{
    padding: 3rem 0 0 0;
    margin-bottom: 0.5rem;
    position: relative;
    display: flex;
    min-height: 600px;
}

#jumbo-form{
    background-image: url("../img/animalytix_bg.jpg");
    background-repeat: no-repeat;
    background-color: var(--brandPrimary);
}
#jumbo-img{
    max-width: 100%;
    object-fit: fill;
}
.btn-primary:hover{
    background-color: var(--brandPrimaryHover); 
    color: #fff;
}

#advice{
    color: #fff;
}

.market-box{
    border: .1rem solid lightgray;
    padding: 1rem;
    display: flex;
}
.market-box h2{
    color: var(--brandPrimary);
    border-left: .3rem solid var(--brandSecondary);
    padding-left: 10px;
}
.market-box img{
    width: 100%;
    object-fit: cover;
}

#landing-footer{
    margin-top:auto;
    color: #fff;
    text-align: center;
    background-color: var(--brandSecondary);
    width: 100%;
}
#landing-footer a{
    text-decoration: none;
    color: inherit;
}
#landing-footer .cpright{
    font-size: .7rem;
}

.pw-eye{
    position: absolute;
    top: 35%;
    right: 15px;
    text-align: center;
}

.pw-eye:hover{
    cursor:pointer;
}

.hide_display{
    display: none !important;
}

/* Below is original css that is used for the authentication page drop down on login */
#alx_auth{
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 3px 15px rgba(0,0,0,.2);
    padding: 30px;
    max-width: 600px;
    margin-top:10rem;
}

#alx_auth img{
    width: 5rem;
}
.login-container{
    padding-left: 0;
    padding-right: 0;
    margin-top: 4rem;
    flex: 1 0 auto;
}
.login_message{
    font-size: .9em;
    display: flex;
    flex-direction: column;
}

.login_message div{
    display: flex;
    justify-content: center;
  }
  .login_message div img{
    width: 10%;
  }

  .login_message h1{
    align-self: center;
    color:var(--brandPrimary);
  }
  .color_subtitle{
    color: var(--brandSecondary);
  }
  .color_border{
    border: 2px solid #024CA2 !important;
    border-radius: 5%;
  }
  .login_selector{
    background-color: #024CA2;
    border: none;
    color: #ffffff;
    padding: 5px 40px;
    font-size: 20px;
    text-align: center;
    display: inline-block;
    box-shadow: 0 10 30 0;
    border-radius: 20px;
    margin: 15px 20px 40px 20px;
    cursor:pointer;
  }
  .login_button{
    background-color: #024CA2;
    border: none;
    color: #ffffff;
    padding: 12px 80px;
    font-size: 24px;
    text-align: center;
    display: inline-block;
    box-shadow: 0 10 30 0;
    border-radius: 5px;
    margin: 15px 20px 40px 20px;
  }
  .login_selector:hover{
    color:#024CA2;
    background-color: #fff;
    border: 1.5px solid #024CA2;
  
  }
.code_box_grp{
    display:flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
}
.code_box_grp input{
    text-align: center;
    border: 2px solid var(--brandPrimary);
    border-radius: 5px;
    outline: none;
    padding: 5px;
    width: 2.2rem;
    font-size: 1.5rem;
    caret-color: var(--brandPrimary);
    color: var(--brandSecondary);

}
#jumbo-form input:focus{
    top:50%;
}

.code_box_grp input:focus{
    border: 2px solid var(--brandSecondary);
  }

.auth_buttons{
    margin-top:1rem;
    display: flex;
    justify-content: space-between;
}
.stripped_btn{
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    outline: inherit;
    cursor: pointer;
}
.color_subtitle{
    color: var(--brandSecondary);
}
.whoops {
    color: red;
    font-weight: bold;
}

.input-error{
    border: solid 2px red;
}

.password_hint {
    color: white;
}

/* XX-Large 1440px and up */
@media (min-width: 1400px){

}

/* X-Large devices and Desktops 1200px and up */
@media (min-width: 1200px){

}

/* Larger Devices and desktops 992px and up*/
@media (min-width: 992px){
    #jumbo-container{
        padding: 3rem;
    }
}

/*Medium devices and tablets 768px and up*/
@media (min-width: 768px){
   
    .wrap{
        height: 26rem;
    }
    .img, .login-wrap{
        width:50%;
    }
    .img{
        height:initial;
    }
    .login-container{
        padding-left: calc(var(--bs-gutter-x) * .5);
        padding-right: calc(var(--bs-gutter-x) * .5);
    }

    #alx_auth{
        max-width: 800px;
        margin-top:15rem;
    }
    #jumbo-form{
        border-radius: 0 10px 10px 0;
    }
    #jumbo-img{
        border-radius: 10px 0 0 10px;
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        max-height: none;
    }
    #jumbo-overlay{
        border-top-left-radius: 10px;
    }
}

/*small devices Landscape Phones 576px and up*/
@media (min-width: 576px){
    
    .cpright{
        font-size: .5rem;
    }
    
}

@media only screen and (min-width: 300px) and (max-height:500px){
    .login-container{
        position:fixed;
        top: -5rem;
    }
}