/* ================= AUTH PAGES ================= */

.auth-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.auth-card h2 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--blue-dark);
    font-weight: 800;
}

.auth-card label {
    font-weight: 600;
    margin-bottom: 6px;
}

.auth-card input {
    border-radius: 12px;
    padding: 10px;
}

.auth-btn {
    width: 100%;
    background: var(--yellow);
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 800;
    margin-top: 10px;
}

.auth-footer {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
}


/* ================= PROFILE ================= */

.profile-simple {
    max-width: 600px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.profile-simple h2 {
    margin-bottom: 20px;
    color: var(--blue-dark);
}

.profile-item {
    margin-bottom: 12px;
    font-size: 16px;
}

.logout-simple {
    display: inline-block;
    margin-top: 20px;
    background: #ffdddd;
    color: #b00000;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
}