/* ================= AUTH STYLE ================= */
* { margin:0; padding:0; box-sizing:border-box; }

body.auth-page {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: linear-gradient(135deg, #1e1e1e, #2b2b2b);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.auth-card {
    background: #2f2f2f;
    padding: 40px;
    width: 380px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    text-align: center;
    color: white;
}

.auth-card h2 {
    margin-bottom: 25px;
    font-weight: bold;
}

.auth-card input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    background: #1f1f1f;
    color: white;
    font-size: 14px;
    transition: 0.3s;
}

.auth-card input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #ffd700;
}

.auth-card button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #ffd700, #ffaa00);
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.auth-card button:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(255,170,0,0.4);
}

.auth-card p {
    margin-top: 15px;
    font-size: 13px;
}

.auth-card a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

.auth-card a:hover {
    text-decoration: underline;
}

.auth-card {
    animation: floatCard 0.6s ease;
}

@keyframes floatCard {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}