body.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background: #0f0f0f;
    font-family: 'Outfit', sans-serif;
}

* {
    font-family: 'Outfit', sans-serif;
}

.auth-card {
    width: 90%;
    max-width: 400px;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.auth-lang-switcher {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 0.75rem;
    color: #444;
}

.auth-lang-switcher a {
    color: #666;
    text-decoration: none;
    transition: 0.2s;
}

.auth-lang-switcher a:hover,
.auth-lang-switcher a.active {
    color: #fff;
}

.auth-logo {
    width: 120px;
    margin-bottom: 1rem;
}

.auth-card h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    font-weight: 500;
}

.auth-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.auth-card input {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #fff;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.auth-card input:focus {
    border-color: #646464ff;
}

.auth-card button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    
    
    
    border-radius: 8px;
    font-weight: 300;
    cursor: pointer;
    margin-top: 0.5rem;

    background: transparent !important;
    border: 1px solid var(--border, rgba(255, 255, 255, 0.1)) !important;
    color: #fff !important;
}

.auth-card .back-link {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
}

.auth-card .back-link:hover {
    color: #fff;
}

.form-error {
    display: block;
    color: #ff3b3b;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}