.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 15px;
}

.login-logo img{
    height: 100px;
    margin-bottom: 15px;
}

.login-logo h6 {
    color: #10243C;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 40px;
}

.form-control {
    height: 60px;
}

.login-form .form-group label,
.forgot-pass-form label {
    font-size: 16px;
    font-weight: 500;
    color: #10243C;
    margin-bottom: 10px;
}

.login-form .form-group{
    position: relative;
}

input[type=email]{
    margin-bottom: 25px;
}

.login-form .form-group i{
    position: absolute;
    bottom: 19px;
    right: 15px;
    color: #10243C;
    z-index: 9;
}

.login-checkbox {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    margin-top: 10px;
}

.login-checkbox .forgot-password a {
    font-size: 14px;
    color: #0F82A8;
    text-decoration: none;
}

.reset-pass-form .form-control{
    margin-bottom: 30px;
}

.reset-pass-form span.input-group-text{
    height: 60px;
}

.login-form .form-control:focus,
.forgot-pass-form .form-control:focus,
.reset-pass-form .form-control:focus {
    border-color: #0F82A8;
    box-shadow: none;
}

.login-form .bg_btn,
.forgot-pass-form .reset-btn,
.reset-pass-form .reset-btn  {
    background: #0F82A8;
    border: 1px solid #0F82A8;
    color: #fff;
    padding: 15px 35px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    margin: 0 auto;
    display: block;
    width: -webkit-fill-available;
}

.forgot-pass-form .reset-btn,
.reset-pass-form .reset-btn{
    margin: inherit;
    width: auto;
}

.forgot-pass-form .back-to-login,
.reset-pass-form .back-to-login{
    display: block;
    color: #0f82a8;
    font-size: 18px;
}

.login-form .bg_btn:focus {
    outline: none;
}

.login-right-section{
    padding-left: 80px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin: 20px 0;
}

.login-right-section .login-content h1{
    font-size: 22px;
    color: #10243C;
    font-weight: 700;
    margin-bottom: 5px;
}

.login-right-section .login-content a{
    font-size: 18px;
    color: #0F82A8;
    font-weight: 500;
}

input[type=checkbox] {
    position: relative;
      border: 1px solid rgba(191, 191, 200, 1);
      border-radius: 2px;
      background: none;
      cursor: pointer;
      line-height: 0;
      outline: 0;
      padding: 0 !important;
      vertical-align: text-top;
      height: 20px;
      width: 20px;
      -webkit-appearance: none;
    opacity: .5;
  }

  input[type=checkbox]:hover {
    opacity: 1;
  }

  input[type=checkbox]:checked {
    background-color: rgba(15, 130, 168, 1);
    border-color: rgba(15, 130, 168, 1);
    opacity: 1;
  }

  input[type=checkbox]:before {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    width: 4px;
    height: 10px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
  }

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

.forgot-pass-form h2,
h2.main-form-heading{
    color: #10243C;
}

.forgot-pass-form .btn-flex,
.reset-pass-form .btn-flex{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

#exampleInputPassword1{
    padding-right: 65px;
}

@media (max-width:767px)
{
    .login-wrapper{
        padding: 50px 15px;
    }

    .login-right-section{
        gap: 40px;
    }
    .login-right-section .login-content h1{
        font-size: 16px;
        margin-bottom: 0;
    }
    .login-right-section .login-content a{
        font-size: 14px;
    }
}

@media (max-width:991px){
    .login-right-section{
        padding-left: 0;
    }
    .login-logo img {
        height: 50px;
    }
    .forgot-pass-form .btn-flex{
        display: block;
        text-align: center;
      }
      .forgot-pass-form .reset-btn{
        margin: 15px auto;
      }
}
