/* ============================================
   AUTH PAGES - CLEAN & MINIMAL
   ============================================ */

.authPage {
    min-height: calc(100vh - 200px);
    padding: 64px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Mulish', sans-serif;
}

.authPage_container {
    width: 100%;
    max-width: 480px;
    padding: 0 16px;
}

/* Card */
.authCard {
    background-color: #FFFFFF;
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px #EFEFEF;
    padding: 48px 40px;
}

.authCard_header {
    text-align: center;
    margin-bottom: 32px;
}

.authCard_title {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    color: #181818;
    margin-bottom: 8px;
}

.authCard_subtitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #555555;
}

/* Form */
.authForm {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.authForm_fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Field */
.authField {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.authField_label {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: #555555;
}

.authField input {
    width: 100%;
    height: 52px;
    padding: 0 20px;
    border: none;
    border-radius: 12px;
    background-color: #F8F8F8;
    box-shadow: inset 0 0 0 1px #EFEFEF;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: #181818;
    outline: none;
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.authField input::placeholder {
    color: #AAAAAA;
}

.authField input:focus {
    box-shadow: inset 0 0 0 2px #FFADC7;
    background-color: #FFFFFF;
}

.authField input:hover {
    box-shadow: inset 0 0 0 1px #FFADC7;
}

.authField_error {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: #FF2469;
    padding: 8px 12px;
    background-color: #FFF5F8;
    border-radius: 8px;
}

.authField_hint {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: #AAAAAA;
}

/* Messages */
.authMessages {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.authMessage {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.authMessage_success {
    background-color: #F0FDF4;
    color: #166534;
}

.authMessage_error {
    background-color: #FFF5F8;
    color: #FF2469;
}

.authMessage_info {
    background-color: #F5F5F5;
    color: #555555;
}

.authMessage_warning {
    background-color: #FFFBEB;
    color: #92400E;
}

/* Button */
.authBtn {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 12px;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.authBtn_primary {
    background-color: #FF2469;
    color: #FFFFFF !important;
}

.authBtn_primary:hover {
    background-color: #FF0050;
}

.authBtn_primary:active {
    transform: scale(0.98);
}

/* Links */
.authLinks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.authLink_text {
    font-size: 16px;
    font-weight: 600;
    line-height: 12px;
    color: #555555;
}

.authLink {
    font-size: 16px;
    font-weight: 600;
    line-height: 12px;
    color: #FF2469;
    text-decoration: none;
    transition: color 0.2s ease;
}

.authLink:hover {
    color: #FF0050;
}

.authLinks_divider {
    font-size: 14px;
    font-weight: 600;
    color: #AAAAAA;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 767px) {
    .authPage {
        padding: 48px 0;
    }

    .authCard {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .authCard_title {
        font-size: 24px;
    }

    .authCard_subtitle {
        font-size: 14px;
    }

    .authForm {
        gap: 20px;
    }

    .authForm_fields {
        gap: 16px;
    }

    .authField input {
        height: 46px;
        padding: 0 16px;
        font-size: 14px;
    }

    .authBtn {
        height: 46px;
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .authPage {
        padding: 32px 0;
    }

    .authCard {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .authCard_title {
        font-size: 22px;
    }

    .authCard_subtitle {
        font-size: 13px;
    }

    .authField_label {
        font-size: 13px;
    }

    .authField input {
        height: 46px;
        padding: 0 16px;
        font-size: 14px;
    }

    .authBtn {
        height: 46px;
        font-size: 14px;
    }
}

