/**
 * Path: public_html/assets/css/auth.css
 */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --ink: #101820;
    --gold: #C89B3C;
    --gold-soft: rgba(200, 155, 60, 0.16);
    --parchment: #F4EBD0;
    --burgundy: #5A1E2B;
    --white-soft: #FAF7EF;
    --muted: #7a6c5b;
    --border: rgba(200, 155, 60, 0.26);
    --shadow: 0 30px 90px rgba(16, 24, 32, 0.26);
    --font-heading: 'Marcellus', serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
}

body.auth-body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top left, rgba(200, 155, 60, 0.22), transparent 34%),
        radial-gradient(circle at bottom right, rgba(90, 30, 43, 0.18), transparent 36%),
        linear-gradient(135deg, var(--white-soft), var(--parchment));
    color: var(--ink);
}

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px 16px;
}

.auth-card {
    width: min(460px, 100%);
    padding: 34px;
    border-radius: 30px;
    background: rgba(250, 247, 239, 0.84);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
}

.auth-logo span {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), #f2d08a);
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 27px;
}

.auth-logo strong {
    font-family: var(--font-heading);
    font-size: 31px;
    letter-spacing: 0.6px;
}

.auth-heading {
    margin-top: 34px;
}

.auth-heading span {
    display: block;
    margin-bottom: 10px;
    color: var(--burgundy);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.auth-heading h1 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 42px;
    line-height: 1.02;
    color: var(--ink);
}

.auth-heading p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.auth-alert {
    margin-top: 22px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(90, 30, 43, 0.1);
    border: 1px solid rgba(90, 30, 43, 0.18);
    color: var(--burgundy);
    font-size: 14px;
    font-weight: 700;
}

.auth-form {
    margin-top: 26px;
}

.auth-form label {
    display: block;
    margin: 16px 0 8px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
}

.auth-form input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border-radius: 16px;
    border: 1px solid rgba(16, 24, 32, 0.12);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
}

.auth-form input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.12);
}

.auth-form button {
    width: 100%;
    height: 52px;
    margin-top: 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), #f2d08a);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(200, 155, 60, 0.25);
}

.auth-footer {
    margin-top: 24px;
    text-align: center;
}

.auth-footer a {
    color: var(--burgundy);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 520px) {
    .auth-card {
        padding: 26px;
        border-radius: 24px;
    }

    .auth-heading h1 {
        font-size: 34px;
    }
}