/* Login Styles */

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 2rem;
}

.auth-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 1.5rem;
    padding: 3rem;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-header p {
    color: #cbd5e1;
}

.auth-subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.auth-providers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-provider-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.auth-provider-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.provider-icon {
    font-size: 1.5rem;
}

.provider-retrocatalog {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.provider-google {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.provider-microsoft {
    background: linear-gradient(135deg, #00a4ef, #7fba00);
}

.auth-no-providers {
    text-align: center;
    padding: 2rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 0.75rem;
}

.auth-no-providers .hint {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}

.auth-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
}

.auth-footer a {
    color: #8b5cf6;
}