/*
 * auth-pages.css — Look der Anmelde-Nebenseiten (Passwort vergessen /
 * Passwort zurücksetzen).
 *
 * Übernimmt 1:1 die Inline-Styles von `cc_login.php`, damit die Seiten hinter
 * „Passwort vergessen?" nicht wie ein anderes Produkt aussehen. cc_login.php
 * behält seine eigene Kopie im <style>, weil dort noch die Passkey-Blöcke
 * dranhängen — wird die Loginseite umgebaut, wandert sie hierher.
 */

body {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.login-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    width: 100%;
    color: #fff;
}

@media (min-width: 576px) {
    .login-container {
        max-width: 400px;
    }
}

.login-container h1 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.auth-hint {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 1.25rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    padding: 0.75rem;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6f61, #ff9068);
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    width: 100%;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(45deg, #ff9068, #ff6f61);
}

.alert {
    margin-top: 1rem;
    font-size: 0.9rem;
}

a {
    color: #ff9068;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
