body{
    background: var(--pure);
    --header-height: 0px;
}
#login__container{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/auth-bg.jpg');
    flex-direction: column;
    background-size: cover;
}
.auth__container {
    width: 98%;
    padding: 0 0.85rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.auth__container form{
    flex: 1;
    
}
.auth__container .form-group{
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.auth__container .form-group label {
    position: absolute;
    top: 16%;
    left: 2%;
    color: var(--footer);
    font-weight: 800;
    
}
h5 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-top: -3rem;
    margin-bottom: 2rem;
    color: var(--footer);
}
.auth__container .form-group label ion-icon{
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 5px;
    margin-left: 10px;
}
.auth__container .form-group input{
    width: 100%;
    padding: 1rem 5px 12px 3rem;
    outline: none;
    font-size: 1rem;
    border-radius: 26px;
    border:1px solid var(--footer);
}
.btn {
    width: 100%;
    padding: 1rem;
    border: none;
    outline: none;
    background: var(--success);
    color: var(--pure);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    margin-top: 0.50rem;
    border-radius: 26px;
}
.auth__link{
    display: block;
    margin-top: 22px;
    color: var(--secondary);
    font-weight: bold;
    text-decoration: none;
}
.auth__link a{
    color: var(--success);
}
.field_error {
    color: #ff1604;
    padding: 2px 10px;
    border-radius: 10px;
    margin-left: 10px;
    margin: 8px 0;
    display: inline-block;
    font-weight: 700;
}
div#login_msg {
    background: #fff;
    border-radius: 10px;
    color: red;
}
div#regMsg {
    color: #000000;
    text-align: center;
    background: white;
    font-weight: 600;
    width: 85%;
    border-radius: 5px;
}