/* ===========================================
   Passwort vergessen – Styling
   Für /public/passwort_vergessen.php
   Vereinsfarben: Blau (#0070D1)
=========================================== */

.pw-container {
    max-width: 480px;
    margin: 60px auto;
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-left: 6px solid #0070D1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.pw-title {
    color: #0070D1;
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.pw-form label {
    font-weight: 600;
    margin-top: 10px;
}

.pw-form input[type="email"] {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.pw-form input[type="email"]:focus {
    border-color: #0070D1;
    box-shadow: 0 0 0 0.2rem rgba(0,112,209,0.25);
}

.pw-submit {
    width: 100%;
    background: #0070D1;
    border: none;
    padding: 12px;
    margin-top: 20px;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.2s;
}

.pw-submit:hover {
    background: #005BB3;
    transform: translateY(-2px);
}