/* Login page specific styles */
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
    padding: 40px 20px;
}

.login-card {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
                0 0 30px rgba(138, 43, 226, 0.2);
    text-align: center;
}

.login-title {
    font-size: 2rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.8);
}

.login-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.5;
}

.login-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.auth-button {
    background: linear-gradient(135deg, #8a2be2 0%, #9932cc 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    width: 100%;
}

.auth-button:hover {
    background: linear-gradient(135deg, #9932cc 0%, #8a2be2 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
}

.auth-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.login-info {
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.login-info h3 {
    color: #8a2be2;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.login-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

.login-info p:last-child {
    margin-bottom: 0;
}

/* Loading state */
.auth-button.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.auth-button.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive design */
@media (max-width: 768px) {
    .login-card {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .login-title {
        font-size: 1.8rem;
    }
    
    .auth-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* Animation for card entrance */
.login-card {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
