/* ===================================================
   HEADER & FOOTER FOR AUTH PAGES
   =================================================== */

/* Header */
.auth-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.auth-header-container {
    max-width: 100%;
    margin: 0;
    padding: 0px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.auth-header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.auth-header-logo:hover {
    transform: scale(1.05);
}

.auth-header-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.auth-header-logo span {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--coral-500), var(--lime-500));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-header-nav {
    display: flex;
    gap: 30px;
}

.auth-header-nav a {
    font-size: 16px;
    font-weight: 600;
    color: var(--brown-900);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.auth-header-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--coral-500);
    transition: width 0.3s ease;
}

.auth-header-nav a:hover {
    color: var(--coral-500);
}

.auth-header-nav a:hover::after {
    width: 100%;
}

/* Adjust body padding for fixed header */
body {
    padding-top: 80px;
}

/* Footer */
.auth-footer {
    background: white;
    border-top: 2px solid var(--cream-100);
    padding: 30px 20px;
    margin-top: 60px;
    position: relative;
    z-index: 100;
}

.auth-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.auth-footer-container p {
    margin: 0;
    color: var(--brown-700);
    font-size: 14px;
}

.auth-footer-links {
    display: flex;
    gap: 25px;
}

.auth-footer-links a {
    font-size: 14px;
    color: var(--brown-700);
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-footer-links a:hover {
    color: var(--coral-500);
}

/* Responsive */
@media (max-width: 768px) {
    .auth-header-container {
        padding: 15px 20px;
    }

    .auth-header-logo span {
        font-size: 20px;
    }

    .auth-header-nav {
        gap: 15px;
    }

    .auth-header-nav a {
        font-size: 14px;
    }

    body {
        padding-top: 70px;
    }

    .auth-footer-container {
        flex-direction: column;
        text-align: center;
    }

    .auth-footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .auth-header-logo img {
        width: 50px;
        height: 50px;
    }

    .auth-header-logo span {
        font-size: 18px;
    }

    .auth-header-nav a {
        font-size: 13px;
    }
}