/* --------------------------------------
   MODERNES HELL-DESIGN FÜR KUNDEN-DASHBOARD
   (Header & Footer bleiben unverändert)
--------------------------------------- */

/* Gesamter Hintergrund */
body {
    background: #f7f7f9 !important; 
}

/* Wrapper */
.center {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
    animation: fadeIn .5s ease;
}

/* Neutrale Reset */
.card h3,
.card p {
    margin: 0;
}

/* Card */
.card {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
    transform: translateY(0);
    transition: .25s ease;
}

/* Hover-Effekt */
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.10);
}

/* Überschrift */
.card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

/* Text */
.card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* MOBILE OPTIMIERUNG */
@media (max-width: 600px) {
    .card {
        padding: 25px;
    }
    .card h3 {
        font-size: 1.5rem;
    }
}


/* ---------------------------
   Passwort ändern – Form Fix
---------------------------- */

/* Form wrapper */
.card form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Labels oben drüber */
.card form label {
    font-weight: 600;
    margin-bottom: 3px;
    color: #333 !important;
}

/* Inputs breiter + modern */
.card form input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #d7d7d7;
    background: #fafafa;
    font-size: 1rem;
    transition: 0.2s;
    box-sizing: border-box;
}

/* Focus Effekt */
.card form input[type="password"]:focus {
    outline: none;
    border-color: #4FBF00;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(79,191,0,0.15);
}

/* Button */
.card form .btn {
    margin-top: 10px;
    padding: 14px 20px !important;
    width: 100%;
    background: #4FBF00;
    color: white;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.card form .btn:hover {
    background: #3ca900;
}

/* ---------------------------------------
   LOGIN – MODERN INPUT + LABEL DESIGN
---------------------------------------- */

/* Wrapper fix */
.login-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff !important;
    padding: 45px !important;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Titel */
.login-card h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111 !important;
}

/* Form Styles */
.login-card form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Labels oben */
.login-card label {
    color: #333 !important;
    font-weight: 600;
    margin-bottom: 3px;
}

/* Inputs modern, breit */
.login-card input {
    width: 100% !important;
    padding: 14px 16px !important;
    border: 1px solid #dcdcdc !important;
    border-radius: 12px !important;
    background: #fafafa !important;
    font-size: 1rem !important;
    transition: 0.25s ease !important;
    box-sizing: border-box !important;
}

/* Fokus-Effekt */
.login-card input:focus {
    border-color: #4FBF00 !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(79,191,0,0.18) !important;
    outline: none !important;
}

/* Login Button */
.login-card .btn {
    width: 100% !important;
    padding: 14px !important;
    background: #4FBF00 !important;
    color: white !important;
    font-size: 1.05rem !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    margin-top: 10px !important;
    border: none !important;
    transition: 0.25s ease;
}

.login-card .btn:hover {
    background: #3ca900 !important;
}
