:root {
    --bg-dark: #0a0a0a;
    --bg-card: #161616;
    --accent: #ff0015;
    --accent-hover: #e60013;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --input-bg: #222222;
    --border-color: #333333;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a{
    text-decoration: none;
    color: #df3341;
}

.navbar {
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.auth-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: 60px;
}

.auth-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.auth-card h2 {
    font-weight: 800;
    margin-bottom: 10px;
}

.auth-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.form-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-control {
    background-color: var(--input-bg);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: var(--input-bg);
    border-color: var(--accent);
    color: var(--text-main);
    box-shadow: 0 0 0 4px rgba(255, 0, 21, 0.15);
}

.form-control::placeholder {color: #666;}

.input-group-text {
    background-color: var(--input-bg);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-control:focus + .input-group-text {border-color: var(--accent);}
.input-group-text:hover {color: var(--text-main);}

.btn-accent {
    background: linear-gradient(135deg, #ff0015 0%, #ff4757 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-white {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    color: rgb(109, 109, 109);
    border: none;
    border-radius: 50px;
    padding: 14px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-white:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    color: rgb(35, 35, 35);
}

.btn-white:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-black {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    color: rgb(236, 230, 230);
    border: none;
    border-radius: 50px;
    padding: 14px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-black:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(111, 106, 106, 0.3);
    color: rgb(255, 255, 255);
}

.btn-black:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-accent:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 21, 0.3);
    color: white;
}

.btn-accent:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.alert-message {
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

#googleLogin, #appleLogin {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#googleLogin img, #appleLogin img {
    display: block;
    margin: 0;
}