/* Full Page Layout */
body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #12284e, #1f4fb5);
    color: #111827;
}

.login-page {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card */
.login-card {
    width: 100%;
    max-width: 380px;
    background: white;
    padding: 32px;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.4);
    text-align: center;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 100px;
    background: #e5edff;
    margin: 0 auto 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #1f4fb5;
}

h1 {
    margin: 0;
    font-size: 24px;
}

.subtitle {
    margin: 6px 0 24px;
    color: #6b7280;
    font-size: 14px;
}

/* Form */
.form-row {
    text-align: left;
    margin-bottom: 16px;
}

.form-row label {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
    display: block;
}

.form-row input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    background: #f9fafb;
}

.form-row input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.35);
    outline: none;
}

/* Error Box */
.error-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fef2f2;
    color: #b91c1c;
    border-radius: 10px;
    padding: 8px 12px;
    margin-bottom: 16px;
    font-size: 13px;
}

.hidden {
    display: none;
}

/* Button */
#login-btn {
    width: 100%;
    padding: 10px 0;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #2563eb, #1f4fb5);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 22px rgba(37, 99, 235, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.12s ease-out;
}

#login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.55);
}

#login-btn:active {
    transform: translateY(0px);
    box-shadow: 0 10px 18px rgba(37, 99, 235, 0.40);
}



/* Footer */
.footer {
    margin-top: 24px;
    font-size: 13px;
    color: #4b5563; /* dezenter Grauton */
}

/* Link-Stil */
.footer a {
    color: #1f4fb5;           /* WeWeDe-Blau */
    text-decoration: none;    /* moderner Look */
    font-weight: 600;
    transition: color 0.15s ease, opacity 0.15s ease;
}

.footer a:hover {
    color: #2563eb;           /* leicht helleres Blau beim Hover */
    opacity: 0.9;
}

.footer a:active {
    opacity: 0.75;
}