/* ===== Base ===== */
body {
    margin: 0;
    padding: 0;
    padding-top: var(--site-header-height);
    background: #f5f7f5; /* soft light background */
    color: #1f1f1f;
    font-family: Arial, Helvetica, sans-serif;
}

/* ===== Layout ===== */
.auth-page {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 70px;
}

.auth-wrapper {
    width: 88%;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

/* ===== Left Text ===== */
.auth-left {
    flex: 1;
    max-width: 560px;
}

/* small label */
.auth-label {
    color: #2f8a54; /* soft green */
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 18px;
}

/* main title */
.auth-left h1 {
    margin: 0 0 24px;
    font-size: 5.2rem;
    line-height: 1.05;
    font-weight: 800;
    color: #16663a; /* strong green title */
    letter-spacing: -1px;
}

/* description */
.auth-description {
    margin: 0;
    font-size: 1.9rem;
    line-height: 1.7;
    color: #5f6f64; /* softer body text */
}

/* ===== Card ===== */
.auth-card {
    flex: 1;
    max-width: 520px;
    background: #ffffff;
    border-radius: 28px;
    padding: 38px 34px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

/* card heading */
.auth-card h2 {
    margin: 0 0 24px;
    font-size: 3rem;
    font-weight: 700;
    color: #1c5e38; /* green heading */
}

/* ===== Form ===== */
.auth-card .input {
    margin-bottom: 22px;
}

.auth-card label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.7rem;
    font-weight: 600;
    color: #4f6f5e; /* slightly green gray */
}

.auth-card input {
    width: 100%;
    height: 56px;
    border: 1.5px solid #d6e3d7;
    border-radius: 16px;
    padding: 0 16px;
    font-size: 1.6rem;
    box-shadow: none;
    background: #fff;
    color: #1f1f1f;
}

/* input focus state */
.auth-card input:focus {
    outline: none;
    border-color: #1f7a45;
    box-shadow: 0 0 0 3px rgba(31, 122, 69, 0.12);
}

/* ===== Button ===== */
.auth-actions {
    margin-top: 10px;
}

.auth-primary-btn {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 999px;
    background: #1f7a45; /* main green button */
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.auth-primary-btn:hover {
    background: #16663a; /* darker green on hover */
}

/* ===== Messages ===== */
.message,
.error-message {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 1.5rem;
}

.message {
    background: #edf8ef;
    color: #24633f;
}

.error-message {
    background: #fdeeee;
    color: #b23b3b;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .auth-wrapper {
        flex-direction: column;
        gap: 34px;
    }

    .auth-left {
        max-width: 100%;
        text-align: center;
    }

    .auth-left h1 {
        font-size: 4.2rem;
    }

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

@media (max-width: 576px) {
    .auth-left h1 {
        font-size: 3.3rem;
    }

    .auth-description {
        font-size: 1.7rem;
    }

    .auth-card {
        padding: 26px 20px;
    }
}
