/* =======================================================
   Fischereiverein User Formulare
   Gilt für [fv_user_registration] und [fv_user_profile]
   ======================================================= */

.fv-user-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.fv-user-form h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.fv-user-form label {
    display: block;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.4rem;
    color: #34495e;
}

.fv-user-form input[type="text"],
.fv-user-form input[type="email"],
.fv-user-form input[type="date"],
.fv-user-form input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.fv-user-form input:focus {
    border-color: #3498db;
    outline: none;
}

.fv-user-form button[type="submit"] {
    margin-top: 1.6rem;
    width: 100%;
    padding: 12px;
    background: #3498db;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.fv-user-form button[type="submit"]:hover {
    background: #2980b9;
}

.fv-user-form button[type="submit"]:active {
    transform: scale(0.98);
}

.fv-user-form p {
    margin-top: 1rem;
    font-size: 0.95rem;
}

.fv-user-form p.success {
    color: #27ae60;
}

.fv-user-form p.error {
    color: #e74c3c;
}

/* Mobile Anpassungen */
@media (max-width: 480px) {
    .fv-user-form {
        padding: 1.4rem;
    }

    .fv-user-form h3 {
        font-size: 1.2rem;
    }
}
