/* Minification failed. Returning unminified contents.
(19,28): run-time error CSS1039: Token not allowed after unary operator: '-app-back-ground'
 */
body,
html {
    height: 100%;
    margin: 0;
}

.grid-container {
    display: flex;
    height: 100vh;
    flex-direction: row;
}

.illustration-section {
    flex: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f7fb;
    background-image: var(--app-back-ground);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*initial loading*/
#emailField{
    display: none;
}

#customerField{
    display: none;
}

.form-section {
    flex: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f7fb;
    /*background-image: linear-gradient(to bottom right, blue, yellow);*/
    /* background-image: url("../images/pattern_reverse.svg"); */
}

    .form-section .ui.segment {
        box-shadow: 0 0 20px rgba(0,153,255,0.5), 0 0 40px rgba(0,153,255,0.3);
        transition: box-shadow 0.4s ease-in-out;
        border-radius: 10px;
    }

        .form-section .ui.segment:hover {
            box-shadow: 0 0 25px rgba(0,153,255,0.7), 0 0 50px rgba(0,153,255,0.4);
        }

/*.otp-section {
    flex: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f7fb;*/
    /*background-image: linear-gradient(to bottom right, blue, yellow);*/
    /* background-image: url("../images/pattern_reverse.svg"); */
/*}

    .otp-section .ui.segment {
        box-shadow: 0 0 20px rgba(0,153,255,0.5), 0 0 40px rgba(0,153,255,0.3);
        transition: box-shadow 0.4s ease-in-out;
        border-radius: 10px;
    }

        .otp-section .ui.segment:hover {
            box-shadow: 0 0 25px rgba(0,153,255,0.7), 0 0 50px rgba(0,153,255,0.4);
        }*/

/* .ui.segment {
    width: 100%;
    max-width: 500px;
} */

.form-header {
    margin-bottom: 1.5rem;
}

.small-text {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
}

.two-fields {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

    .two-fields .field {
        flex: 1;
        min-width: 240px;
    }

.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.captcha-image {
    height: 40px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 3px;
    user-select: none;
}

.loginLogo {
    display: block;
    width: 70%;
    margin: auto;
}

.ui.button.primary {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .grid-container {
        flex-direction: column;
    }

    .illustration-section {
        padding: 1rem;
    }

        .illustration-section img {
            max-width: 100%;
        }

    .form-section {
        padding: 2rem 1rem;
    }

    .loginLogo {
        display: block;
        width: 100%;
        margin: auto;
    }
}

.ui.dropdown.countrydpd {
    max-width: 50px !important;
}

.backBtn{
    color: rgb(33,133,208);
}

.secondCheckbox {
    margin-left: 1rem !important;
}

