*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

#login-page-content{
    position: relative;
    max-width: 100%;
    background-image: url(../images/login-imgs/login-bg-img1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 2rem;
    padding-bottom: 10rem;
}
#inner-page-content-cont{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 2rem; */
}
#savers-login-acct-form-wrapper{
    position: relative;
    max-width: 400px;
    background-color: #f8f8f8;
    border-radius: 0 10px 10px 0;
    order: 2;
    padding: 1rem;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
}

#login-page-content>h2, #login-page-content .saver-name{
    position: relative;
    font-size: 2rem;
    font-weight: bold;
    color: #f8f8f8;
}
#login-page-content>h2{
    border-left: 4px solid orange;
    padding-left: 0.7rem;
    margin-bottom: 2rem;
}

#login-page-content .saver-name{
    color: orange;
    font-style: italic;
}

#savers-login-acct-form-wrapper>h1{
    position: relative;
    color: dodgerblue;
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem;
    text-align: center;

}

#savers-acct-login-form{
    position: relative;
    width: 100%;
}
.form-row{
    position: relative;
    margin: 0.3rem 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.input-field-wrapper{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.input-field-wrapper>label{
    position: relative;
    color: dodgerblue;
    font-size: 11px;
    font-weight: bold;
    align-self: flex-start;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}
.input--field{
    position: relative;
    width: 100%;
    height: 40px;
    padding: 0.7rem;
    outline: none;
    border: 1px solid #eee;
    border-radius: 30px;
    background-color: #fff;
    transition: all 
    0.5s ease-in;
    box-shadow: 0 0 2px 0 rgba(0,0,0,0.1);
    padding-left: 45px;
}
.input--field:focus{
    border-color: dodgerblue;
}
.input--field::placeholder{
    color: #ccc;
    font-size: 9px;

}

.acct-login-icon{
    position: absolute;
    top: 75%;
    left: 15px;
    transform: translateY(-75%);
    color: orange;
    font-size: 1.5rem;
}
.error-msg{
    color: tomato;
    font-size: 10px;
    font-weight: bold;
    margin-top: 0.5rem;
    display: none;

}

.login_error_msg_box{
    position: relative;
    max-width: 100%;
    height: auto;
    opacity: 1;
    background-color: #fff;
    padding: 1rem;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    border: 3px solid tomato;
    border-radius: 0px 5px 5px 0px;
    box-shadow: 0px 0px 10px 0 rgba(0,0,0,0.2);
    margin: 0.5rem 1rem;
    margin-bottom: 1.2rem;
    transition: all 1500ms ease-in;
}

.login_error_msg_box>.login_error_msg_inner_box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.login_error_msg_inner_box>.login_error_icon{
    color: tomato;
    font-size: 2rem;
    font-weight: bold;
    text-align: left;
    
}
.login_error_msg_inner_box>#login_error_msg{
    color: tomato;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    padding: 1.2rem;
    line-height: 1.2;
}

#login_error_msg>h3{
    color: tomato;
    font-family: 'Teko', sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: left;

}
#login_error_msg>p{
    font-size: 10px;
    font-weight: bold;
}


.login_success_msg_box, .logout_success_msg_box{
    position: relative;
    max-width: 100%;
    height: auto;
    opacity: 1;
    background-color: #fff;
    padding: 1rem;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    border: 3px solid forestgreen;
    border-radius: 0px 5px 5px 0px;
    box-shadow: 0px 0px 10px 0 rgba(0,0,0,0.2);
    margin: 1rem;
    margin-bottom: 1.2rem;
    transition: all 1500ms ease-in;
}

.login_success_msg_box>.login_success_msg_inner_box, .logout_success_msg_box>.logout_success_msg_inner_box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.login_success_msg_inner_box>.login_success_icon, .logout_success_msg_inner_box>.logout_success_icon{
    color: forestgreen;
    font-size: 2rem;
    font-weight: bold;
    text-align: left;
    
}
.login_success_msg_inner_box>#login_success_msg, .logout_success_msg_inner_box>#logout_success_msg{
    color: forestgreen;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    padding: 1.2rem;
    line-height: 1.2;
}
#login_success_msg>h3, #logout_success_msg>h3{
    color: forestgreen;
    font-family: 'Teko', sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: left;

}

#login_success_msg>p, #logout_success_msg>p{
    font-size: 10px;
    font-weight: bold;
}

#login-img-wrapper{
    position: relative;
    width: 400px;
    height: 307px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px 0 0 10px;
}
#login-img-wrapper>img{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px 0 0 10px;
}

#login-btn{
    position: relative;
    width: 100%;
    outline: none;
    padding: 0.7rem;
    border: 1px solid deepskyblue;
    height: 40px;
    background-image: linear-gradient(to right, deepskyblue 10%, darkblue 90%);
    border-radius: 30px;
    box-shadow: 0 0 2px 0 rgba(0,0,0,0.1);
    color: #f8f8f8;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.5s ease-in;
    cursor: pointer;
}

#login-btn>i{
    font-size: 1.8rem;
    font-weight: bold;

}
#login-btn:hover{
    background: orange;
    border-color: orange;
}
.line-rule{
    display: block;
    margin: 2rem 0;
    color: #bbb;
    width: 100%;
}

#acct-login-query{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
#acct-login-query>.btn{
    outline: none;
    border: 1px solid dodgerblue;
    background-color: dodgerblue;
    display: inline-block;
    margin: 1rem 0;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
    transition: all 0.5s ease-in-out;
}
#dont-have-account-btn{
    border-radius: 3px 0 0 3px;
}
#dont-have-account-btn:hover{
    background-color: deepskyblue;
}
#acct-login-query>#forgot-pass-btn{
    border-radius: 0 3px 3px 0;
    background-color: deepskyblue;
}
#acct-login-query>#forgot-pass-btn:hover{
    background-color: dodgerblue;
}
#acct-login-query>.btn>a{
    display: inline-block;
    color: #eee;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    padding: 0.7rem 1.2rem;
    text-decoration: none;
}

@media (max-width:620px){

    #inner-page-content-cont{
        flex-direction: column;
        gap: 2rem;
    }

    #savers-login-acct-form-wrapper{
        max-width: 100%;
    }

    #login-img-wrapper{
        width: 100%;
    }

}

@media (max-width:350px){
    #login-page-content{
        padding: 2rem 0.7rem;
    }
    #savers-login-acct-form-wrapper>h1{
        font-size: 1.5rem;
    }

    .login_success_msg_inner_box, .login_error_msg_inner_box{
        flex-direction: column;
        justify-content: center;
        
    }
    


}


@media (max-width:258px){
    #acct-login-query>.btn>a{
        font-size: 12px;
        padding: 0.5rem 0.7rem;
    }
    
    
}

