/* Login Page Styles */

body
{
    margin: 0;
    padding: 0;
}

.login-container
{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.login-card
{
    background: #111;
    padding: 2rem;
    border-radius: 12px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    text-align: center;
    color: #eee;
}

.login-title
{
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,0,0,0.8), 0 0 20px rgba(255,0,0,0.6);
}

.login-error
{
    background: #f8d7da;
    color: #721c24;
    padding: 0.8rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: bold;
    box-shadow: 0 0 6px rgba(220,53,69,0.5);
}

.login-form
{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-label
{
    text-align: left;
    font-size: 0.9rem;
    color: #bbb;
}

.login-input
{
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    background: #1e1e1e;
    color: #fff;
    outline: none;
    transition: box-shadow 0.2s;
}

.login-input:focus
{
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.7);
}

.login-button
{
    background: linear-gradient(135deg, #ff3333, #cc0000);
    border: none;
    border-radius: 6px;
    padding: 0.9rem;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.login-button:hover
{
    background: linear-gradient(135deg, #e60000, #990000);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}

.apple-btn
{
    display: flex;
    justify-content: center;
    margin-top: 14px;
    text-decoration: none;
}

.apple-btn svg
{
    height: 44px; /* Apple required minimum */
}