* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: "Bricolage Grotesque", sans-serif;
    background: #fbfbfb;
    color: #08224b;
}

.auth-page {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}


/*
|--------------------------------------------------------------------------
| LOGO
|--------------------------------------------------------------------------
*/

.auth-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 16px 0 50px;
}


.auth-logo-sub {
    display: block;
    margin-top: 16px;
}


/*
|--------------------------------------------------------------------------
| BOX
|--------------------------------------------------------------------------
*/

.auth-box {

    width: 100%;
    max-width: 1060px;

    min-height: 328px;

    padding: 54px 30px 42px;

    background: #F3F4F6;

    border-radius: 40px;
}

.auth-content {
    width: 100%;
    max-width: 342px;

    margin: 0 auto;
}


/*
|--------------------------------------------------------------------------
| TYPOGRAPHY
|--------------------------------------------------------------------------
*/

.auth-title {
    margin: 0 0 50px;

    color: #031E48;

    font-weight: 600;
    font-size: 32px;
    line-height: 24px;

    text-align: center;
}

.input_login {
    width: 100%;
    height: 68px;
    top: 421px;
    border-radius: 10px;
    background-color: #fff;
    margin-bottom: 13px;
    padding: 5px 16px;
    font-size: 16px;
    border: 1px solid #fff;
    outline: none;
}
.input_login::placeholder {
    color: #61779b;
    opacity: 1;
}

.remember_box {
    font-weight: 500;
    font-size: 14px;
    color: #031E48;
    margin: 3px 0 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.forgot_box {
    font-weight: 500;
    font-size: 14px;
    color: #031E48;
    text-decoration: none;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    text-align: center;
}


/*
|--------------------------------------------------------------------------
| BUTTON
|--------------------------------------------------------------------------
*/

.auth-button {
    display: block;
    width: 100%;
    height: 68px;

    border: 0;
    border-radius: 10px;

    cursor: pointer;

    background: #EC008C;

    color: #ffffff;
    font-weight: 500;
    font-size: 18px;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.auth-button:hover {
    opacity: 0.88;
}

.auth-button:active {
    transform: translateY(1px);
}



.auth-error {
    margin: 5px 5px 0;

    color: #d60055;

    font-size: 11px;
    line-height: 1.3;
}

.auth-alert {
    margin-bottom: 16px;
    padding: 10px 14px;

    border-radius: 8px;

    font-size: 12px;
    line-height: 1.4;
}

.auth-alert-success {
    background: #e7f6ed;
    color: #267447;
}

.auth-alert-error {
    background: #fde8ef;
    color: #a30040;
}

label.auth-description {
    margin-bottom: 4px;
    display: flex;
}
/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {
    .auth-button {
        height: 60px;
    }
    .input_login {
        height: 60px;
    }
    .auth-page {
        padding-top: 40px;
    }

    .auth-logo {
        margin-bottom: 30px;
    }

    .auth-logo-main {
        width: 230px;
    }

    .auth-logo-sub {
        width: 105px;
    }

    .auth-box {
        max-width: 500px;

        min-height: auto;

        padding: 30px 25px 35px;

        border-radius: 24px;
    }

}


@media (max-width: 480px) {

    .auth-page {
        padding:
            30px 15px
            25px;
    }

    .auth-logo-main {
        width: 205px;
    }

    .auth-logo-sub {
        width: 95px;
    }

    .auth-box {
        padding:
            28px 20px
            32px;

        border-radius: 20px;
    }

    .auth-content {
        max-width: 100%;
    }

}