/* ===== TRANG AUTH (ĐĂNG NHẬP / ĐĂNG KÝ) ===== */

.auth-page {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card trung tâm */
.auth-card {
    background: #DDEEFF;
    border-radius: 16px;
    padding: 48px 52px;
    width: 440px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-shadow: 0 8px 40px rgba(122, 190, 250, 0.25), 0 2px 12px rgba(0,0,0,0.08);
}

/* Tiêu đề */
.auth-title {
    font-size: 16px;
    font-weight: 700;
    color: #7ABEFA;
    text-align: center;
    letter-spacing: 1px;
}

/* Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-input-wrap {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.auth-input-wrap label {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
}

.auth-input-wrap input {
    background: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #000000;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.auth-input-wrap input::placeholder {
    color: #aaaaaa;
}

/* Nút đăng nhập chính */
.auth-btn-primary {
    background-color: #7ABEFA;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 11px;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 4px;
    transition: opacity 0.2s;
}

.auth-btn-primary:hover {
    opacity: 0.85;
}

/* Quên mật khẩu */
.auth-forgot {
    font-size: 12px;
    font-style: italic;
    text-decoration: underline;
    color: #000000;
    text-align: left;
}

.auth-forgot:hover {
    color: #7ABEFA;
}

/* Hàng quên mật khẩu + đăng ký */
.auth-links-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
