/* --------------------------------------------- */
/* AUTH PAGE STYLES (scoped to auth card only) */
/* --------------------------------------------- */

/* PAGE WRAPPER — ONLY BACKGROUND */
.auth-page {
    background: #f9f9f9; /* page background */
}

/* MAIN CONTENT AREA — CENTER THE CARD */
.auth-main {
    font-family: 'Poppins', sans-serif; /* scoped to auth content only */
    min-height: calc(100vh - 80px); /* leave space for navbar */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

/* AUTH CARD */
.auth-main .auth-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 50px 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.1);
}

/* ICON */
.auth-main .auth-card .icon i {
    font-size: 48px;
    color: #1976d2;
    margin-bottom: 15px;
}

/* HEADER */
.auth-main .auth-card h1 {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

/* DESCRIPTION */
.auth-main .description {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
}

/* FORM */
.auth-main .auth-form {
    text-align: left;
}

.auth-main .auth-form .input-group {
    margin-bottom: 18px;
}

.auth-main .auth-form label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
    display: block;
}

.auth-main .auth-form input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.auth-main .auth-form input:focus {
    outline: none;
    border-color: #1976d2;
}

/* BUTTON */
.auth-main .auth-form button {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    background: #1976d2;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 15px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.auth-main .auth-form button:hover {
    background: #0d47a1;
}

/* FOOTER LINKS */
.auth-main .auth-footer {
    margin-top: 18px;
    text-align: center;
}

.auth-main .auth-footer p {
    margin: 4px 0;
    font-size: 14px;
    color: #555;
}

.auth-main .auth-footer a {
    color: #1976d2;
    text-decoration: underline;
}

.auth-main .auth-footer a:hover {
    color: #0d47a1;
}

/* ALERTS */
.auth-main .auth-card .alert {
    font-size: 14px;
    padding: 10px;
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .auth-main .auth-card {
        padding: 40px 25px;
    }

    .auth-main .auth-card h1 {
        font-size: 24px;
    }
}