body {
    height: 100vh;
}

.invalid-feedback {
    display: block;
}
.text-blue{
    color:#232D50;
}
.logo-cnt {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #232D50;
}

.logo-cnt img {
    max-width: 70%;
    height: auto;
}

.login_form_cnt {
    background-image: url('../img/login-bg.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#reset_form,
#login_form {
    max-width: 80%;
    max-width: 650px;
    padding: 32px;
    width: 100%;
}


#login_form h1 {
    text-align: center;
    font-style: normal;
    font-size: 40px;
    line-height: 48px;
    color: #232D50;
}

.input_group {
    position: relative;
}

.input_group img {
    position: absolute;
    width: 26px;
    height: auto;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);

}

.input_group input {
    background: #F9F9FA;
    padding-left: 58px !important;
    font-size: 20px;
    padding: 12px;
}

#reset_form label,
#login_form label {
    color: #707070;
}

.checkbox_cnt {
    display: flex;
    justify-content: space-between;
}

.form-check {
    min-height: 30px;
    padding-left: 28px;
    display: flex;
    align-items: center;
}

.form-check input {
    width: 30px;
    height: 30px;
}

.form-check label {
    margin-left: 12px;
}

.form-check-input:checked {
    background-color: #232D50;
    border-color: #232D50;
}
#reset_pass_btn,
#submitBtn,
#login_btn {
    width: 100%;
    background: #232D50;
    border-radius: 10px;
    outline: none;
    border: 1px solid #232D50;
    color: white;
    text-align: center;
    padding: 15px;
    transition: all .5s;
}
#reset_pass_btn:hover,
#submitBtn:hover,
#login_btn:hover {
    background-color: #F9F9FA;
    color: #232D50;
}

.forgot_password {
    margin-top: 20px;
    text-align: right;
}

.forgot_password a {
    color: #232D50;
}

.btn-blue {
    background: #232D50;
    border-radius: 10px;
    outline: none;
    border: 1px solid #232D50;
    color: white;
    text-align: center;
    transition: all .5s;
    margin: 0 12px;
    width: auto;
}

.btn-blue:hover {
    background-color: #F9F9FA;
    color: #232D50;
}

.custom_cnt_for_form{
    width: 100% !important;
}


#mainContent{
    width: 100%;
    max-width: 650px;
}


/* signup */
.signup-form .input_group input{
    font-size: 16px;
    padding: 8px;
}
.signup-form .input_group img{
    width: 20px;
}

.signup-form #login_form{
  padding-top: 100px;
  padding-bottom: 100px;
}
.signup-form .login_form_cnt{
    align-items: flex-start;
}
.text-navy-blue{
    color: #232D50 !important;
}

.signupButton{
    margin-top: 10px;
    width: auto;
    background: #232D50;
    border-radius: 10px;
    outline: none;
    border: 1px solid #232D50;
    color: white;
    text-align: center;
    transition: all .5s;
    padding: 10px 20px;
    text-decoration: none;
}
.signupButton:hover{
    color: white;
}
.signupBtnCnt{
    display: flex;
    justify-content: end;
}

@media screen and (max-width: 1600px) {
  
    .signup-form #login_form{
        padding-top: 40px;
    }
  }