/* --- AUTH PAGES STYLING (Login / Register / Admin Login) --- */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.auth-card {
    background: #050505;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 10;
}

.auth-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-align: center;
}

.auth-subtitle {
    font-weight: 300;
    color: #888888;
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.auth-input-group {
    margin-bottom: 20px;
}

.auth-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
}

.auth-input {
    width: 100%;
    padding: 15px;
    background: #020202;
    color: #ffffff;
    border: 1px solid #1a1a1a;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.auth-input:focus {
    outline: none;
    border-color: #3b0066;
    box-shadow: 0 0 10px rgba(59, 0, 102, 0.4);
}

.auth-btn {
    width: 100%;
    background: #00ffcc;
    color: #000000;
    border: none;
    padding: 15px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0,255,204,0.3);
    transition: all 0.2s;
    margin-top: 10px;
}

.auth-btn:hover {
    background: #00e6b8;
    box-shadow: 0 0 25px rgba(0,255,204,0.5);
    transform: translateY(-2px);
}

.auth-footer-link {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #666;
}

.auth-footer-link a {
    color: #00ffcc;
    text-decoration: none;
    font-weight: bold;
}

.auth-footer-link a:hover {
    text-decoration: underline;
}