@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;600&display=swap');

.ea-login-veloquill {
    margin: 0;
    min-height: 100vh;
    font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0f172a;
    position: relative;
    overflow: hidden;
}

.veloq-login-bg {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(59,130,246,0.10), rgba(16,185,129,0.10)),
        url("images/login-feathers-keyboard.png") center/cover no-repeat;
    filter: saturate(1.1);
    opacity: 0.35;
    z-index: 0;
}

/* Wrapper & Card */
.veloq-login-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.veloq-login-card {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 2.4rem 2.2rem 2.1rem;
    box-shadow:
        0 22px 60px rgba(15, 23, 42, 0.25),
        0 0 0 1px rgba(148, 163, 184, 0.18);
}

.veloq-login-title {
    font-size: 1.7rem;
    font-weight: 600;
    margin: 0 0 0.35rem;
    letter-spacing: 0.04em;
}

.veloq-login-subtitle {
    margin: 0 0 1.4rem;
    font-size: 0.95rem;
    color: #64748b;
}

/* Fehlerbox */
.veloq-login-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    border-radius: 12px;
    padding: 0.65rem 0.8rem;
    font-size: 0.85rem;
    margin-bottom: 1.1rem;
}

/* Formular */
.veloq-login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.veloq-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.5em;
}

.veloq-field label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b7280;
}

.veloq-field input {
    border-radius: 0.8rem;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
    color: #0f172a;
    outline: none;
    transition: border-color 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}

.veloq-field input:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.55);
    background: #ffffff;
}

.veloq-actions {
    margin-top: 0.4rem;
}

.veloq-btn {
    width: 100%;
    border-radius: 999px;
    border: none;
    padding: 0.6rem 0.8rem;
    font-size: 0.96rem;
    font-weight: 600;
    background: linear-gradient(135deg, #0ea5e9, #22c55e);
    color: #f9fafb;
    cursor: pointer;
    transition: transform 0.08s ease, box-shadow 0.08s ease, filter 0.08s ease;
    box-shadow: 0 14px 36px rgba(16, 185, 129, 0.35);
}

.veloq-btn:hover {
    filter: brightness(1.04);
    transform: translateY(-1px);
}

.veloq-btn:active {
    transform: translateY(0);
    box-shadow: 0 7px 20px rgba(16, 185, 129, 0.45);
}

.veloq-divider {
    padding: 1rem;
}