/*.box {
    position: relative;
    overflow: hidden;
}*/
.box {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.box::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background-color: var(--bg-outer-card);
    z-index: -1;
}
/* left-side */
.left-block {
    max-width: 550px;
    width: 100%;
}
.left-bg {
    background: var(--bg-main);
}

.right-bg {
    background: var(--bg-outer-card);
}
.logo {
    margin-bottom: 30px;
    gap: 20px;
}
.logo-text::first-letter {
    font-size: 46px;
    line-height: 51px;
}
.logo-text {
    font-size: 32px;
    line-height: 51px;
}
.login-body {
    width: 100%;
}
.login-body h1 {
    font-weight: var(--fw-semibold);
    font-size: 34px;
    line-height: 37px;
    color: var(--heading-white);
}
.login-body p {
    font-size: var(--normal-medium);
    color: var(--text-primary);
    line-height: 100%;
    margin-top: 15px;
}
.verticals {
    margin-top: 20px;
    column-gap: 10px;
}
.verticals li {
    flex-basis: calc(20% - 2px);
}
/* right-side */
.right-block {
    width: 100%;
    max-width: 420px;
}

/*.right-block {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
}
*/
.right-block > h1 {
    font-size: 34px;
    font-weight: var(--fw-semibold);
    line-height: 28px;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.right-block > p {
    font-size: var(--normal-size);
    color: var(--text-primary);
    line-height: 19px;
}
.login-form {
    margin-top: 20px;
}
.login-form label {
    font-weight: var(--medium);
    font-size: var(--normal-size);
    line-height: 10px;
}
.login-form .form-control {
    color: var(--text-primary);
}
.login-form .input {
    background-color: var(--input-bg);
    font-size: var(--normal-size);
    font-weight: var(--regular);
    border-radius: 10px;
    height: 56px;

    border: 1px solid var(--border-white);
    padding-inline: 14px;
}
.login-form .input::placeholder {
    font-size: var(--normal-size);
    font-weight: var(--regular);
    color: var(--text-primary);
    line-height: 13px;
    opacity: 90%;
}
.login-form .input:is(:active, :focus) {
    box-shadow: none;
    outline: none;
    border-color: var(--login-border);
}
.password-input {
    padding-right: 40px;
}
.password-eye {
    right: 15px;
    top: 45px;
    /* transform: translateY(-50%); */
    width: 16px;
    height: 16px;
    opacity: 0.6;
    cursor: pointer;
}
.login-forgot-password {
    color: var(--text-primary);
    font-size: var(--font-sm);
    font-weight: var(--fw-semibold);
    line-height: 22px;
    letter-spacing: 1.25%;
    /* text-decoration: underline; */
}
/* The custom-checkbox */
.form-check-custom {
    padding: 0;
    margin: 0;
    display: flex;
}
.custom-checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 16px;
    background-color: transparent;
    border: 1px solid var(--input-border-white);
    border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.custom-checkbox:hover input ~ .checkmark {
    background-color: transparent;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox input:checked ~ .checkmark {
    background-color: transparent;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid var(--input-border-white);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.submit-btn {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    border: none;
    background: var(--btn-primary-bg);
    font-weight: var(--fw-semibold);
    font-size: var(--normal-size);
}

.otp-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: transparent;
    color: white;
}

.otp-input:focus {
    border-color: var(--input-focus);
    outline: none;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
    .right-bg {
        padding: 40px 20px;
    }

    .right-block {
        max-width: 100%;
    }

    .otp-wrapper {
        justify-content: center;
        gap: 10px;
    }

    .otp-input {
        width: 42px;
        height: 48px;
        font-size: 16px;
    }

    .submit-btn {
        height: 48px;
        font-size: 14px;
    }
}
