@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #3542fa, #adb3fd);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Container */
.login-form {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Überschrift */
.login-form h1 {
    font-size: 1.875rem;
    color: #497aff;
    font-weight: 700;
}

.login-form .subtext {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Eingabefelder */
.login-form input {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    font-size: 1rem;
    outline: none;
    transition: all 0.2s ease;
}

.login-form input:focus {
    border-color: #82b4ff;
    box-shadow: 0 0 0 3px rgba(96, 132, 250, 0.25);
}

/* Buttons */
.login-form button {
    padding: 0.75rem 1rem;
    background: linear-gradient(90deg, #497aff, #448fff);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.login-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(68, 143, 255, 0.3);
}

/* Fehlermeldung */
.message_container {
    color: #ef4444;
    font-size: 0.875rem;
}

/* Icon / Bild */
.login-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 1rem;
}
