.container {
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--cloud);
}

@media screen and (max-width: 768px) {
    .container::before {
        content: "";
        width: 100%;
        height: 50vh;
        position: fixed;
        background-color: var(--primary);
        color: var(--white);
        top: 0;
        left: 0;
    }
}

.auth-page {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

    .auth-page .auth-page-content {
        width: 100%;
        max-width: 40em;
        background-color: var(--white);
        border: 1px solid var(--light-gray);
        border-radius: 0.5em;
    }

@media screen and (max-width: 768px) {
    .auth-page .auth-page-content {
        width: 90%;
        margin: auto;
    }
}

.auth-page .auth-mobile-header {
    display: none;
    width: 100%;
}

    .auth-page .auth-mobile-header h3 {
        text-align: center;
        color: var(--white);
        font-size: 1em;
        margin: 2em 0;
    }

    .auth-page .auth-mobile-header p {
        text-align: center;
        color: var(--white);
        margin-bottom: 1em;
    }

    .auth-page .auth-mobile-header .logo {
        width: 100%;
        max-width: 12em;
        margin: 1em auto;
    }

        .auth-page .auth-mobile-header .logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

.auth-page .auth-page-header.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5em 2em;
    border-bottom: 1px solid var(--light-gray);
}

    .auth-page .auth-page-header.header-main h4 {
        font-weight: 700;
        margin-bottom: 0;
        color: var(--black);
        font-size: 1.25em;
    }

    .auth-page .auth-page-header.header-main p {
        font-size: 0.875em;
        font-weight: 300;
    }

    .auth-page .auth-page-header.header-main .logo {
        width: 100%;
        max-width: 8em;
    }

        .auth-page .auth-page-header.header-main .logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

@media screen and (max-width: 768px) {
    .auth-page .auth-mobile-header {
        display: block;
    }

    .auth-page .auth-page-header.header-main {
        display: none;
    }
}

.auth-page.auth-login .auth-page-main,
.auth-page.auth-otp .auth-page-main {
    max-width: 440px;
    margin: auto;
    padding: 3em 2em;
}

.auth-page-main .auth-page-main-form .title {
    font-size: 1em;
    margin-bottom: 1.8em;
    text-align: center;
    font-weight: 500;
}

    .auth-page-main .auth-page-main-form .title > p {
        font-size: 0.875em;
        font-weight: 200;
        color: var(--black);
        margin-top: -.5em;
    }

        .auth-page-main .auth-page-main-form .title > p > span {
            font-weight: 600;
            color: var(--primary);
        }
/*
.auth-page.auth-login .auth-page-main .auth-page-main-form .input-with-icon {
  margin-bottom: 1.5em;
}*/

.auth-page .auth-page-main .auth-page-main-form .input-with-icon {
    position: relative;
}

    .auth-page .auth-page-main .auth-page-main-form .input-with-icon input {
        padding-right: 3em;
    }

        .auth-page
        .auth-page-main
        .auth-page-main-form
        .input-with-icon
        input::placeholder {
            font-size: 1em;
        }

    .auth-page .auth-page-main .auth-page-main-form .input-with-icon .icon {
        position: absolute;
        top: 0.5em;
        right: 1em;
    }

.auth-page .auth-page-main .auth-page-main-form .license-box {
    margin-top: 3em;
    text-align: center;
    color: var(--dark-gray);
    font-weight: 200;
    font-size: 0.875em;
}

    .auth-page .auth-page-main .auth-page-main-form .license-box a {
        color: var(--primary);
    }

.auth-page.auth-otp .auth-page-main-form .otp-box {
    margin: 2em 0;
    display: flex;
    justify-content: space-between;
    gap: 0.5em;
    direction: ltr;
}

    .auth-page.auth-otp .auth-page-main-form .otp-box input[type="number"] {
        width: 2.5em;
        height: 2.5em;
        text-align: center;
        direction: ltr;
        font-size: 1.5em;
        border: 1px solid #ccc;
        border-radius: 0.25em;
    }

    .auth-page.auth-otp
    .auth-page-main-form
    .otp-box > input::-webkit-outer-spin-button,
    .auth-page.auth-otp
    .auth-page-main-form
    .otp-box > input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        margin: 0;
    }

.auth-page.auth-otp .auth-page-main-form .actions-box {
    display: flex;
    justify-content: center;
    align-items: center;
    /*margin-bottom: 2em;*/
}

    /*.auth-page.auth-otp .auth-page-main-form .actions-box .transparent-btn {
  text-align: right;
  margin: 0;
}*/

    .auth-page.auth-otp .auth-page-main-form .actions-box .resend-timer-box {
        font-size: 0.75em;
        font-weight: 300;
        color: var(--dark-gray);
        width: 50%;
        text-align: center;
        user-select: none;
    }

        .auth-page.auth-otp .auth-page-main-form .actions-box .resend-timer-box.active > span:nth-of-type(2),
        .auth-page.auth-otp .auth-page-main-form .actions-box .resend-timer-box.active > span:nth-of-type(3) {
            display: none;
        }

        .auth-page.auth-otp .auth-page-main-form .actions-box .resend-timer-box.active > span:first-of-type {
            font-weight: 400;
            text-decoration: underline;
            color: var(--primary);
            cursor: pointer;
        }

.auth-page .auth-page-main {
    padding: 1em 4em;
}
.auth-page-main .auth-page-main-form .captcha-wrapper {
    width: 100%;
    margin-top: 1em;
    display:flex;
    justify-content:center;
    align-items:center;
}
    .auth-page-main .auth-page-main-form .captcha-wrapper > img {
        border-radius: 0.3em;
        width: 8em;
        height: 3.5em;
        object-fit: contain;
        object-position: center;
        border: solid 1px rgba(0,0,0,0.1);
    }
.auth-page-main .auth-page-main-form .captcha-wrapper + .input-with-icon{
    position:relative;
}
    .auth-page-main .auth-page-main-form .captcha-wrapper + .input-with-icon > button {
        position: absolute;
        left: 1em;
        top: 0.75em;
        font-size: 0.75em;
        border: 1px solid rgba(0,0,0,0.3);
        border-radius: 0.3em;
        background: #f5f5f5;
        height: 2.3em;
        width: 6em;
        padding: 0;
        overflow: hidden;
    }
    .auth-page .auth-page-footer {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1em;
        padding: 1.3em 2em;
        border-top: 1px solid var(--light-gray);
    }

    .auth-page .auth-page-footer button {
        width: 40%;
        display: block;
    }

        .auth-page .auth-page-footer button[disabled="disabled"] {
            background-color: rgba(0,0,0,0.1);
        }

@media screen and (max-width: 768px) {
    .auth-page .auth-page-footer {
        flex-direction: column;
    }

        .auth-page .auth-page-footer button {
            width: 100%;
        }
}



input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

    input[type=number]::-webkit-inner-spin-button,
    input[type=number]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
