/* assets/css/login.css - Styles für Login-Seite */

body { 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0; 
}

.login-card { 
    background: white; 
    padding: 40px; 
    border-radius: 15px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    width: 100%; 
    max-width: 400px; 
    border-top: 5px solid var(--fcm-red); 
    position: relative; 
}

.btn-fcm { 
    background: #000; 
    color: white; 
    border: none; 
    font-weight: bold; 
    width: 100%; 
    padding: 12px; 
    transition: 0.3s; 
}

.btn-fcm:hover { 
    background: var(--fcm-red); 
    color: white; 
}

.btn-magic { 
    background: white; 
    color: #333; 
    border: 1px solid #ddd; 
    font-size: 0.85rem; 
    padding: 8px; 
    margin-top: 10px; 
    width: 100%; 
    border-radius: 5px; 
    transition: 0.2s; 
}

.btn-magic:hover { 
    background: #f8f9fa; 
    border-color: #666; 
}

.forgot-link { 
    font-size: 0.8rem; 
    color: #666; 
    text-decoration: none; 
    cursor: pointer; 
    display: block; 
    margin-top: 20px; 
    text-align: center; 
}

.forgot-link:hover { 
    text-decoration: underline; 
    color: var(--fcm-red); 
}

#resetArea { 
    display: none; 
    margin-top: 20px; 
    padding-top: 20px; 
    border-top: 1px solid #eee; 
}

.logo-img { 
    height: 60px; 
    margin-bottom: 20px; 
}
