@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

/* Allgemeine Grundeinstellungen */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Ändere 'center' zu 'flex-start' */
    min-height: 100vh;
    background: url('wowback.jpg') no-repeat;
    background-size: cover;
    background-position: center;

}

/***********Header **************/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    color: #fff;
    user-select: none;
}

/* Logo */
.logo {
    font-size: 1.5em;
    color: #fff;
}

/* Navigation */
.navigation a {
    position: relative;
    font-size: 1em;
    color: #fff;
    font-weight: 500;
    margin-left: 40px;
    margin-right: 15px;
}

/* Navigation Hover Effekt */
.navigation a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    transform: scaleX(0);
    transition: transform 0.5s;
}

.navigation a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}

/*********** Wrapper und Formular Box **************/
.wrapper { 
    background-color: rgba(0, 0, 0, 0.7); ; 
    padding: 20px; 
    border-radius: 10px; 
    width: 100%; 
    max-width: 500px; /* Breite der Box */
    margin: 20px auto; 
    border-radius:6px;
}

.wrapper .form-box {
    width: 100%;
    padding: 25px;
}
.container {
    padding-top: 120px; /* Passen Sie dies entsprechend der Header-Höhe an */
}

/*********** Formularstile **************/
.form-box h2 {
    font-size: 2em;
    color: #c7c1c1;
    text-align: center;
}


.form-box form .field {
    position: relative;
    width: 100%;
    height: 50px;
    color: white;
    margin: 40px 0;
    background-color: rgba(0, 0, 0, 0.5);
    border:none;}
.form-box form .field select {
    position: relative;
    width: 100%;
    height: 50px;
    color:#c7c1c1;
    margin: 10px 0;
    border-radius:6px;
    background-color: rgba(0, 0, 0, 0.5);
}
.form-box form .input input {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    outline: none;
    font-size: 1em;
    border-radius: 6px;
    font-weight: 600;
  
}

.form-box form .icon {
    position: absolute;
    right: 8px;
    font-size: 1.2em;
    
    line-height: 57px;
}

/*********** Button-Stile **************/
.btn {
    background-color: rgba(0, 0, 0, 0.7); 
    border: none; 
    color: white; 
    padding: 10px 20px;  /* Erhöhte Padding-Größe */
    border-radius: 5px; 
    cursor: pointer; 
    font-size: 16px;  /* Schriftgröße vergrößert */
    width: 100%; /* Breite auf 100% setzen, um den Button die gesamte Breite des Containers einzunehmen */
}
.btn:hover {
    background-color: rgba(0, 0, 0, 0.9); /* Hintergrundfarbe beim Hover */
    color: white; /* Weißer Text beim Hover */
}

/*********** Link-Stile **************/
.links-register {
    font-size: 0.9em;
    color: rgba(0, 0, 0, 0.9); 
    text-align: center;
    font-weight: 500;
    margin: 25px 0 10px;
}

.links-register a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;.container {
        padding-top: 80px; /* Passen Sie dies entsprechend der Header-Höhe an */
    }
    font-weight: 600;
}

.links-register a:hover {
    text-decoration: underline;
}


.forget-pw {
    font-size: 0.9em;
    color: rgba(0, 0, 0, 0.9);
    text-align: center;
    font-weight: 500;
    margin: 25px 0 10px;
}

.forget-pw a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;.container {
        padding-top: 80px; /* Passen Sie dies entsprechend der Header-Höhe an */
    }
    font-weight: 600;
}

.forget-pw a:hover {
    text-decoration: underline;
}
/*********** Fehlermeldungen **************/
.message {
    color: white; /* Fehlermeldungen in Weiß */
    text-align: center; /* Text zentrieren */
    margin-bottom: 20px; /* Abstand nach unten */
}

.error {
    color: white; /* Fehlernachrichten in Weiß */
    display: block;
}

.success {
    color: white; /* Erfolgsnachrichten in Weiß */
    display: block;
}
table {
    
        width: 100%;
        border-collapse: collapse;
        background-color: #333; /* Dunkler Hintergrund für die Tabelle */
        margin-top: 20px; /* Abstand über der Tabelle */
}

th, td {
    border: 1px solid #666;
    text-align: center;
    padding: 5px 10px;
}

th {
    background-color: #444;
    color: #fff;
    font-size: 14px;
}

td {
    background-color: #555;
    color: #fff;
    font-size: 12px;
}