/* body */
body {
    font-family: Poppins;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    background-color: var(--white-color);
}

/* email */
.email-label {
    color: var(--dark-gray-color);
    font-size: 14px !important;
}

/* login button */
.login-btn {
    border-radius: 50px;
    height: 48px;
    font-size: 16px;
    font-weight: 500 !important;
}

/* hover for back arrow */
a:hover {
    color: #344054;
    text-decoration: none;
}

/* container */
.container-fluid {
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* for error message */
input.error,
textarea.error,
select.error,
span.error,
.select2-container--default .select2-selection--single.error {
    border: none !important;
    font-weight: none !important;
}

/* for image */
.image-section {
    width: 100%;
    height: 50vh;
    background: url("../../img/image.png") no-repeat center center;
    background-size: cover;
}

/* left and rifht div */
.form-section {
    flex: 1;
    overflow-y: auto;
    padding: 50px;
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* login-box */
.login-box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* input for email and password */
.form-control:focus {
    border-color: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* for checkbox and forget password */
.form-group.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -2%;
}

/* input for email and password */
.form-control {
    padding-right: 40px;
}

/* input for email and password for error message */
.form-control.is-invalid {
    border-color: #ff0000 !important;
}

/* input for email and password */
.form-group {
    position: relative;
}

.btn-block-login {
    width: 95% !important;
}

/* mobile screen */
@media (max-width: 376px) {
    .welcome-title {
        font-size: 28px !important;
    }

    .login-message {
        font-size: 12px !important;
    }

    .form-group {
        width: 94% !important;
    }

    .forgot-password {
        font-size: 12px !important;
    }

    .form-check-label {
        font-size: 12px !important;
    }

    .btn-block-login {
        width: 88% !important;
    }
}
/* for mobile screen */
@media (max-width: 415px) {
    .welcome-title {
        font-size: 28px !important;
    }
    .login-message {
        font-size: 12px !important;
    }

    .form-group {
        width: 94% !important;
    }

    .forgot-password {
        font-size: 12px !important;
    }

    .form-check-label {
        font-size: 12px !important;
    }

    .btn-block-login {
        width: 88% !important;
    }
}
/* for mobile screen */
@media (max-width: 431px) {
    .welcome-title {
        font-size: 28px !important;
    }
    .login-message {
        font-size: 12px !important;
    }

    .form-group {
        width: 95% !important;
    }

    .forgot-password {
        font-size: 12px !important;
    }

    .form-check-label {
        font-size: 12px !important;
    }

    .btn-block-login {
        width: 88% !important;
    }
}
/* for mobile screen */
@media (max-width: 362px) {
    .welcome-title {
        font-size: 26px !important;
    }
    .login-message {
        font-size: 11px !important;
    }

    .form-group {
        width: 100% !important;
    }

    .forgot-password {
        font-size: 12px !important;
    }

    .form-check-label {
        font-size: 12px !important;
    }

    .btn-block-login {
        width: 94% !important;
    }
}

/* for mobile screen */
@media (max-width: 769px) {
    .form-group {
        width: 95% !important;
    }

    .forgot-password {
        font-size: 12px !important;
    }

    .form-check-label {
        font-size: 12px !important;
    }

    .btn-block-login {
        width: 90% !important;
    }
}

/* for mobile screen */
@media (max-width: 345px) {
    .welcome-title {
        font-size: 24px !important;
    }

    .login-message {
        font-size: 11px !important;
    }

    .form-group {
        width: 95% !important;
    }

    .forgot-password {
        font-size: 12px !important;
    }

    .form-check-label {
        font-size: 12px !important;
    }

    .btn-block-login {
        width: 90% !important;
    }
}

/* mobile screen minumum width */
@media (min-width: 768px) {
    .container-fluid {
        flex-direction: row;
    }

    .image-section {
        position: fixed;
        top: 0;
        right: 0;
        width: 50%;
        height: 100vh;
    }

    .form-section {
        padding: 150px;
        width: 50%;
    }
}

/* mobile screen for maximum width and minimum width */
@media (max-width: 991px) and (min-width: 768px) {
    .container-fluid {
        flex-direction: column;
    }

    .image-section {
        display: none;
    }

    .form-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }

    .login-box {
        width: 100%;
        max-width: 400px;
    }

    .form-group {
        width: 100%;
    }

    button {
        width: 100%;
    }

    .col-md-6 {
        max-width: 100%;
    }
}

/* mobile screen for minimum width */
@media (min-width: 768px) {
    .form-section {
        padding: 6%;
    }
}

/* for password error icon bultin hide */
input[type="password"].is-invalid {
    background-image: none !important;
}

/* error input feild */
.invalid-feedback {
    color: #e3342f !important;
    font-size: 13px !important;
    display: block !important;
    margin-top: 5px !important;
    margin-left: 5px !important;
}

/* for back arrow */
.back-link {
    text-decoration: none;
    color: var(--dark-gray-color);
    font-size: 34px;
    font-weight: 380;
}

.btn-success {
    color: var(--white-color);
    background-color: var(--primary-green-color);
    border-color: var(--primary-green-color);
}

/* common code in login,forget,reset end */

/* login start */
/* title */
.welcome-title {
    color: var(--black-color);
    font-size: 40px;
}

/* login message */
.login-message {
    font-size: 16px;
    font-weight: 400 !important;
    color: var(--light-gray-color);
}

/* password */
.password-label {
    color: var(--dark-gray-color);
    font-size: 14px;
}

/* forget password */
.forgot-password {
    color: var(--black-color);
    font-size: 14px;
    padding-right: 6%;
    font-weight: 500 !important;
}

/* remember checkbox */
.form-check-input {
    width: 13px;
    height: 12px;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    background-color: transparent;
}

/* remember checkbox */
.form-check-input:checked {
    background-color: var(--primary-green-color);
    border-color: var(--primary-green-color);
}

/* remember checkbox */
.form-check-input:checked::after {
    content: "";
    position: absolute;
    left: 3px;
    width: 4px;
    height: 8px;
    border: solid var(--white-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: inline-block;
}

/* remember checkbox */
.form-check-label {
    font-size: 14px;
    font-weight: 400 !important;
    color: var(--dark-gray-color);
}

/* input feild for email and password */
.form-control {
    font-size: 13px !important;
    font-weight: 400 !important;
    font-family: "Poppins";
    color: var(--dark-gray-color);
    background-color: var(--white-color);
    border-radius: 5px;
    padding: 10px 14px 10px 14px !important;
    height: 44px !important;
    transition: none !important;
}

/* eye button */
.toggle-password.active {
    background: url("../../img/eye-icon-url.png") no-repeat center center;
    background-size: contain;
}

/* eye button */
.fa-eye:before {
    content: none;
}

/* eye button */
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* eye button */
.toggle-password {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url("../../img/eye-off-icon-url.png") no-repeat center center;
    background-size: contain;
    cursor: pointer;
}

/* for forget password */
a:hover {
    color: var(--black-color);
    text-decoration: none;
}

/* login end */

/* email/forget start */
/* title */
.forget-title {
    font-size: 40px;
    color: var(--black-color);
}

/* forget password */
.forget-message {
    font-size: 16px;
    font-weight: 400 !important;
    padding-right: 20%;
    color: #838383 !important;
}

/* for email feild */
.form-control {
    font-size: 13px !important;
    font-weight: 400 !important;
    font-family: "Poppins";
    color: var(--dark-gray-color);
    background-color: var(--white-color);
    border-radius: 5px;
    padding: 10px 14px 10px 14px !important;
    height: 44px !important;
    transition: none !important;
    width: 95% !important;
}

/* login button */
.btn-block-forget {
    margin-top: 25px;
    display: block;
    width: 95% !important;
}

/* mobile screen for maximum width */
@media screen and (max-width: 376px) and (min-width: 361px) {
    .forget-title {
        font-size: 28px !important;
    }
    .forget-message {
        font-size: 13px !important;
    }

    .form-group {
        width: 95% !important;
    }

    .btn-block-forget {
        width: 90% !important;
    }
}
@media screen and (max-width: 415px) and (min-width: 376px) {
    .forget-title {
        font-size: 32px !important;
    }
    .forget-message {
        font-size: 15px !important;
    }

    .form-group {
        width: 94% !important;
    }

    .btn-block-forget {
        width: 90% !important;
    }
}

@media screen and (max-width: 391px) and (min-width: 376px) {
    .forget-title {
        font-size: 29px !important;
    }

    .forget-message {
        font-size: 14px !important;
    }

    .form-group {
        width: 94% !important;
    }

    .btn-block-forget {
        width: 90% !important;
    }
}

@media screen and (max-width: 431px) and (min-width: 415px) {
    .forget-title {
        font-size: 34px !important;
    }

    .forget-message {
        font-size: 16px !important;
    }

    .form-group {
        width: 94% !important;
    }

    .btn-block-forget {
        width: 90% !important;
    }
}

@media screen and (max-width: 361px) and (min-width: 360px) {
    .forget-title {
        font-size: 26px !important;
    }

    .forget-message {
        font-size: 13px !important;
    }

    .back-link {
        font-size: 26px !important;
    }

    .form-group {
        width: 94% !important;
    }

    .btn-block-forget {
        width: 90% !important;
    }
}

@media screen and (max-width: 769px) and (min-width: 541px) and (orientation: portrait) {
    .forget-title {
        font-size: 41px !important;
    }

    .forget-message {
        font-size: 20px !important;
    }

    .back-link {
        font-size: 40px !important;
    }

    .form-group {
        width: 94% !important;
    }

    .btn-block-forget {
        width: 90% !important;
    }
}

@media screen and (max-width: 541px) and (min-width: 431px) {
    .forget-title {
        font-size: 41px !important;
    }

    .forget-message {
        font-size: 20px !important;
    }

    .back-link {
        font-size: 40px !important;
    }

    .form-group {
        width: 94% !important;
    }

    .btn-block-forget {
        width: 90% !important;
    }
}

@media screen and (max-width: 345px) {
    .forget-title {
        font-size: 24px !important;
    }

    .forget-message {
        font-size: 12px !important;
    }

    .back-link {
        font-size: 24px !important;
    }

    .form-group {
        width: 94% !important;
    }

    .btn-block-forget {
        width: 90% !important;
    }
}

/* email/forget start */

/* reset start */
.reset-title {
    color: var(--black-color);
    font-size: 34px;
}

/* for back arrow */
a {
    color: var(--black-color);
    text-decoration: none;
    background-color: transparent;
}

/* create password and confrrm password */
.fs-14 {
    font-size: 14px !important;
    color: var(--dark-gray-color);
}

/* input feild */
.form-control {
    font-size: 13px !important;
    font-weight: 400 !important;
    font-family: "Poppins";
    color: var(--dark-gray-color);
    background-color: var(--white-color);
    border-radius: 5px;
    padding: 10px 14px 10px 14px !important;
    height: 44px !important;
    transition: none !important;
    width: 65%;
}

/* button */
.btn-block {
    display: block;
    width: 62%;
}

/* toggle button */
.toggle-password-create.active {
    background: url("../../img/eye-icon-url.png") no-repeat center center;
    background-size: contain;
}
/* for password */
.password-wrapper-create {
    position: relative;
    display: flex;
    align-items: center;
}
/* eye button */
.toggle-password-create {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url("../../img/eye-off-icon-url.png") no-repeat center center;
    background-size: contain;
    cursor: pointer;
}
/* eye button */
.toggle-password-confirm.active {
    background: url("../../img/eye-icon-url.png") no-repeat center center;
    background-size: contain;
}

/* eye button */
.fa-eye:before {
    content: none;
}

/* eye button */
.password-wrapper-confirm {
    position: relative;
    display: flex;
    align-items: center;
}
/* eye button */
.toggle-password-confirm {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url("../../img/eye-off-icon-url.png") no-repeat center center;
    background-size: contain;
    cursor: pointer;
}
/* for password error icon bultin hide */
input[type="password-create"].is-invalid {
    background-image: none !important;
}
/* for password error icon bultin hide */
input[type="password_confirmation"].is-invalid {
    background-image: none !important;
}
/* error input feild */
.invalid-feedback {
    color: #e3342f !important;
    font-size: 13px !important;
    display: block !important;
    margin-top: 5px !important;
    margin-left: 5px !important;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    background-image: none !important;
}

/* mobile screen minimum width */
@media (min-width: 768px) {
    .container-fluid {
        flex-direction: row;
    }

    .image-section {
        position: fixed;
        top: 0;
        right: 0;
        width: 50%;
        height: 100vh;
    }

    .form-section {
        padding: 150px;
        width: 50%;
    }

    .form-control {
        width: 85%;
    }

    .btn-block {
        display: block;
        width: 85%;
    }
}

/* mobile screen maximum and minimum width */
@media (max-width: 991px) and (min-width: 768px) {
    .container-fluid {
        flex-direction: column;
    }

    .image-section {
        display: none;
    }

    .form-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }

    .login-box {
        width: 100%;
        max-width: 400px;
    }

    button {
        width: 100%;
    }

    .col-md-6 {
        max-width: 100%;
    }

    .form-control {
        width: 85%;
    }

    .btn-block {
        display: block;
        width: 85%;
    }
}

/* mobile screen minimum width */
@media (min-width: 768px) {
    .form-section {
        padding: 6%;
    }

    .form-control {
        width: 85%;
    }

    .btn-block {
        display: block;
        width: 85%;
    }
}

/* mobile screen maximum width */
@media (max-width: 767px) {
    .container-fluid {
        flex-direction: column;
    }

    .image-section {
        display: none;
    }

    .form-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }

    .login-box {
        width: 100%;
        max-width: 400px;
    }

    button {
        width: 100%;
    }

    .form-control {
        width: 85%;
    }

    .btn-block {
        display: block;
        width: 85%;
    }
}
/* reset end */
