body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    position: relative;
}

.login-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
}

h2 {
    margin-bottom: 35px;
}

.error-message {
    color: #d32f2f;
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    text-align: left;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.otp-input {
    font-size: 1.4rem;
    font-family:'Roboto Mono',monospace;
    letter-spacing: 1.5ch;
    text-align: center;
}

input:focus {
    outline: none;
    border-color: #9E182E;
    box-shadow: 0 0 0 1px rgba(158,24,46,0.15);
}

.label {
    line-height: 0.3;
}

.password-wrapper {
    position: relative;
}

.toggle-pass {
    position: absolute;
    right: 10px;
    top: 33%;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
    color: #777;
}

.toggle-pass img {
    height: 14px;
    vertical-align: middle;
}

/* =========================================================================
   BUTTONS & LINKS (Modulares System für konsistentes Aussehen)
   ========================================================================= */
.btn {
    display: inline-block;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-family: inherit;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

.btn-full {
    width: 100%;
    box-sizing: border-box;
    display: block;
    margin-bottom: 10px; /* Leichter Abstand zwischen untereinanderstehenden Buttons */
}

/* Letztes Element im Formular braucht keinen Abstand nach unten */
form .btn-full:last-child {
    margin-bottom: 0;
}

.btn-primary {
    background-color: #9E182E;
    color: white;
}

.btn-primary:hover {
    background-color: #8c1529;
}

.btn-secondary {
    background-color: #e2e8f0;
    color: #334155;
}

.btn-secondary:hover {
    background-color: #cbd5e1;
}

/* ========================================================================= */

.info {
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    width: 300px;
    padding: 0.75rem 1.25rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #666666;
    margin: 0;
    z-index: 5;
}

.info .entity-name {
    font-weight: 600;
}

.info a {
    color: inherit;
    text-decoration: none;
}

.info a:hover,
.info a:focus {
    text-decoration: underline;
}