﻿.login-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-form-container {
    background-color: #221E27;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

/* Titel */
.login-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

/* Formularfeld */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #7700FF;
    display: block;
    margin-bottom: 8px;
}

/* Eingabefelder */
.form-control {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    margin-bottom: 10px;
}

/* Eingabefelder im Fokus */
.form-control:focus {
    border-color: #007bff;
    outline: none;
}


/* Fehlernachricht */
.alert-danger {
    color: #d9534f;
    background-color: #f2dede;
    border-color: #ebccd1;
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
    text-align: center;
}

.custom-btn {
    background-color: transparent; /* Weißer Hintergrund */
    border: 1px solid #7700FF; /* Heller Rand */
    border-radius: 50px; /* Abgerundete Ecken (100%) */
    padding: 10px 20px; /* Innenabstand */
    font-size: 16pt;
    font-family: 'Quattrocento Sans', sans-serif; /* Benutzerdefinierte Schriftart */
    color: #7700FF; /* Schwarze Schriftfarbe */
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.5); /* Schatten */
    transition: all 0.3s ease; /* Sanfte Übergänge */
}

.custom-btn:hover, .custom-btn-active:hover {
    background-color: #7700FF; /* Hintergrundfarbe bei Hover */
    border: #7700FF;
    color: white;
}

.custom-btn:focus {
    outline: none; /* Entfernt den Standard-Outline */
}

.custom-btn:active {
    transform: translateY(0); /* Rückkehr zur ursprünglichen Position bei Klick */
}

.custom-btn-active {
    background-color: white; /* Weißer Hintergrund */
    border: 1px solid white; /* Heller Rand */
    border-radius: 50px; /* Abgerundete Ecken (100%) */
    padding: 10px 20px; /* Innenabstand */
    font-size: 16pt;
    font-family: 'Quattrocento Sans', sans-serif; /* Benutzerdefinierte Schriftart */
    color: black; /* Schwarze Schriftfarbe */
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.3); /* Schatten */
    transition: all 0.3s ease; /* Sanfte Übergänge */
}

/* Responsive Design für mobile Geräte */
@media (max-width: 600px) {
    .login-form-container {
        padding: 20px;
        width: 100%;
        max-width: 350px;
    }

    .login-title {
        font-size: 24px;
    }
}