/* ============================================================
   08er-Vereinsportal – Register Styles
   Modernes, zentriertes Registrierungsdesign
   Blau (#0070D1) – passend zum Vereinslogo
============================================================ */

.register-container {
    display: flex;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 60px;
    background: #f5f5f5;
}

.register-card {
    width: 100%;
    max-width: 400px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    border-left: 6px solid #0070D1;
}

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

label {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 6px;

}

.form-control {
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 10px;
    width: 80%;
    max-width: 80%;
}

.form-control:focus {
    border-color: #0070D1;
    box-shadow: 0 0 0 0.2rem rgba(0, 112, 209, 0.25);
}

.form-text{
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 4px;
}

.btn-register {
    width: 100%;
    background: #0070D1;
    border: none;
    color: white;
    padding: 10px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-register:hover {
    background: #005bb3;
    transform: translateY(-2px);
}



.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}


/* Mobile Optimierung */
@media (max-width: 480px) {
    .register-card {
        margin: 0 10px;
    }
}