@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

body {
    background: #070d18;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #f8fafc;
}

.auth-box {
    background: #141e33;
    padding: 40px;
    border-radius: 18px;
    width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.auth-box h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    margin-bottom: 24px;
    text-align: center;
    color: #f8fafc;
}

input {
    width: 100%;
    padding: 13px 16px;
    margin: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: #0e1626;
    color: #f8fafc;
    font-size: 14px;
    outline: none;
    transition: all 0.25s ease;
}

input:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
}

button {
    width: 100%;
    padding: 13px;
    background: #f59e0b;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #070d18;
    margin-top: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

button:hover {
    background: #d97706;
    transform: translateY(-2px);
}

p {
    cursor: pointer;
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #94a3b8;
    transition: color 0.2s ease;
}

p:hover {
    color: #f59e0b;
}

#loginError, #signupError {
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
    text-align: center;
}
