/* assets/css/login/main.css - Haupt-Stylesheet für Login */

/* Basis Styles */
.login-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

/* Header Styles */
.login-header {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 1200px;
}

.login-brand {
    margin-bottom: 2rem;
}

.login-brand-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.login-brand-title {
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.login-brand-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.login-selection-card {
    max-width: 600px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 auto;
}

.login-selection-title {
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.login-selection-description {
    color: #6c757d;
    margin-bottom: 0;
}