/* ----------------------------------Login------------------------------ */
/* Login-Formular-Container */
#login-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.3);
    background-color: white;
    font-family: Arial, sans-serif;
}

/* Logo-Styling */
.login-logo {
    display: block;
    margin: 0 auto; /* Zentriert das Logo */
    width: 300px; /* Setzt die Breite explizit auf 50px */
    height: auto; /* Beibehaltung des Seitenverhältnisses */
	margin-top: 60px;
	margin-bottom: 80px; /* Abstand nach unten */
}

/* Login-Überschrift Container */

.login-message-box {
    background-color: #fff; /* Weißer Hintergrund */
    color: #000; /* Schwarze Schrift */
    padding: 15px; /* Innenabstand */
    border: 1px solid #ccc; /* Dünner grauer Rand */
    border-radius: 5px; /* Abgerundete Ecken */
    text-align: center; /* Text zentrieren */
    max-width: 400px; /* Maximale Breite der Box */
    margin: 20px auto; /* Zentriert die Box auf der Seite */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Leichter Schatten für mehr Sichtbarkeit */
}

.login-headline {
    left: 0;
    text-align: left;
    padding-left: 0;
	margin-left: -20px; /* Gleicht das Padding des Hauptcontainers aus */
}

.login-headline-container {
    display: inline-block; /* Passt sich der Breite des H2-Elements an */
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10%; /* 5px oben/unten, 10px rechts/links */
    margin-bottom: 30px;
}
/* Login-Überschrift */
.login-headline-container h2 {
    color: #fff;
    margin: 0; /* Verhindert zusätzlichen Außenabstand */
}

.social-login-buttons {
    display: flex; /* Flexbox für horizontale Ausrichtung */
    justify-content: center; /* Zentriert die Buttons horizontal */
    gap: 20px; /* Abstand zwischen den Buttons */
    margin: 10px 0; /* Oberer und unterer Abstand von 10px */
	margin-bottom: 20px;
}

.social-login-buttons img {
    width: 40px;  
    height: 40px; 
    object-fit: contain; /* Stellt sicher, dass das Bild nicht verzerrt wird */
}

.spacer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* Oder eine feste Breite setzen */
    margin: 10px 0;
}

.spacer-line {
    flex-grow: 1;
    width: 40%; /* Setzt die Linie auf eine bestimmte Breite */
    height: 1px;
    background-color: #ccc !important; /* Farbe der Linie */
    border: none;
}

.spacer-text {
    margin: 0 10px;
    color: #ccc;
}

/* Input-Felder und Labels */
.login-field {
    margin-bottom: 20px;
}

.login-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #000;
	text-align: left;
}

.login-field input[type="text"],
.login-field input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #6EC1E4;
    border-radius: 5px;
    box-sizing: border-box;
}

#password {
    border: none;
}

/* Style for input fields when focused (clicked or tabbed into) 
.login-field input[type="text"]:focus,
.login-field input[type="password"]:focus {
    border-color: #ccc; /* Highlight the border on focus 
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.5); /* Optional: Add focus glow 
}*/

#password:focus {
    border: none;
    box-shadow: none;
}

/* Passwort-Sichtbarkeitsbutton */
.pw_toggle {
    display: flex;
    align-items: center;  /* Vertikal zentrieren */
    justify-content: center; /* Horizontal zentrieren */
    border: 1px solid #6EC1E4;
    border-radius: 5px;
}

.toggle {
    display: flex;
    align-items: center;
    justify-content: center; 
    width: 50px; /* Kann angepasst werden */
}

.toggle-password {
    color: #007bff;
    cursor: pointer;
    font-size: 12px;
    margin: 0%;
}

.toggle-password:hover {
    text-decoration: underline;
}

/* Stellt sicher, dass Checkbox und Label nebeneinander stehen */
.login-field.remember-me {
    display: flex;
    align-items: center; /* Sorgt dafür, dass Checkbox und Label auf gleicher Höhe sind */
	margin: 0;
	padding-bottom: 20px;
}

/* Falls das Label nicht perfekt ausgerichtet ist */
.login-field.remember-me label {
    font-size: 14px;
    cursor: pointer; /* Klick auf das Label aktiviert die Checkbox */
	color: #000;
}

/* Checkbox Standardgröße beibehalten */
.login-field.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

#rememberme:hover {
    outline: 2px solid #0073aa; /* Leichtes Highlight, wenn man über die Checkbox fährt */
    border-radius: 3px; /* Runde Ecken für ein modernes Design */
}

/* Submit-Button */
.login-field button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.5; /* Oder exakt 20px bei 16px Schriftgröße */
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-field button[type="submit"]:hover {
    background-color: #005a87;
}

.login-field button[type="submit"]:focus {
    animation: pulse 0.2s ease-in-out;
}

/*pulsieren lassen beim anklicken*/
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.login-field input[type="submit"]:focus {
    animation: pulse 0.4s ease-in-out;
    outline: none; /* Optional: Remove default focus outline */
}

/* Fehlernachricht */
#error-message {
    color: red;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

.lost-password-section{
	color: #fff;
	padding-top: 10px;
}

.lost-password-section p {
	margin: 0 0 0 !important;
    text-align: center;
}

.lost-password-link{
	color: #6EC1E4;
	text-decoration: underline !important;
}

.lost-password-link:hover{
	color: #6EC1E4;
}

.register-container{
	color: #fff;
	padding-top: 0px; /* Reduziere oder entferne den oberen Abstand */
    text-align: center;
}

.register-link{
	color: #6EC1E4;
	text-decoration: underline !important;
}

.register-link:hover{
	color: #6EC1E4;
}

/* ---------------------------------- Passwort Zurücksetzen ------------------------------ */
/* Passwort-Zurücksetzen-Formular-Container */
#pw-reset-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.3);
    background-color: white;
    font-family: Arial, sans-serif;
}

/* Logo-Styling */
.pw-reset-logo {
    display: block;
    margin: 0 auto;
    width: 300px;
    height: auto;
    margin-top: 60px;
    margin-bottom: 80px;
}

/* Passwort-Zurücksetzen-Überschrift */
.pw-reset-headline {
    left: 0;
    text-align: left;
    padding-left: 0;
    margin-left: -20px;
}

.pw-reset-headline-container {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10%;
    margin-bottom: 30px;
}

.pw-reset-headline-container h2 {
    color: #fff;
    margin: 0;
}

/* Input-Felder und Labels */
.pw-reset-field {
    margin-bottom: 20px;
}

.pw-reset-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #000;
    text-align: left;
}

.pw-reset-field input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #6EC1E4;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Stil für das Input-Feld beim Fokussieren */
.pw-reset-field input[type="email"]:focus {
    border-color: #ccc;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.5);
}

/* Submit-Button */
.pw-reset-field input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.pw-reset-field input[type="submit"]:hover {
    background-color: #005a87;
}

/* Fehler- und Erfolgsmeldungen */
.pw-reset-error {
    color: red;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

.pw-reset-success {
    color: green;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

/* Zurück zum Login-Link */
.pw-reset-back-section {
    color: #fff;
    padding-top: 10px;
    text-align: center;
}

.pw-reset-login-link {
    color: #6EC1E4;
    text-decoration: underline !important;
}

.pw-reset-login-link:hover {
    color: #6EC1E4;
}

/* ---------------------------------- Passwort Zurücksetzen ------------------------------ */

/* Formular-Container */
#reset-password-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.3);
    background-color: white;
    font-family: Arial, sans-serif;
}

/* Logo-Styling */
.reset-password-logo {
    display: block;
    margin: 0 auto;
    width: 300px;
    height: auto;
    margin-top: 60px;
    margin-bottom: 80px;
}

/* Passwort-Zurücksetzen-Überschrift */
.reset-password-headline {
    left: 0;
    text-align: left;
    padding-left: 0;
    margin-left: -20px;
}

.reset-password-headline-container {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10%;
    margin-bottom: 30px;
}

.reset-password-headline-container h2 {
    color: #fff;
    margin: 0;
}

/* Input-Felder und Labels */
.reset-password-field {
    margin-bottom: 20px;
}

.reset-password-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #000;
    text-align: left;
}

.reset-password-field input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #6EC1E4;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Stil für das Input-Feld beim Fokussieren */
.reset-password-field input[type="password"]:focus {
    border-color: #ccc;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.5);
}

/* Submit-Button */
.reset-password-field input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.reset-password-field input[type="submit"]:hover {
    background-color: #005a87;
}

/* Fehler- und Erfolgsmeldungen */
.reset-password-error {
    color: red;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

.reset-password-success {
    color: green;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

/* Zurück zum Login-Link */
.reset-password-back-section {
    color: #fff;
    padding-top: 10px;
    text-align: center;
}

.reset-password-login-link {
    color: #6EC1E4;
    text-decoration: underline !important;
}

.reset-password-login-link:hover {
    color: #6EC1E4;
}