/* Hier kannst du dein CSS für das Styling der Seite hinzufügen */

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    text-align: center;
}

h1 {
    color: #333;
}

p {
    color: #666;
}

#login-form, #register-form {
    width: 300px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"], input[type="password"], input[type="email"] {
    width: 90%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

a {
    text-decoration: none;
    color: #333;
    margin: 0 5px;
}

/* Weitere Styles hier hinzufügen, um deine Seite zu gestalten */
.info-icon {
    font-size: 14px; /* Ändere die Schriftgröße nach Bedarf */
    margin-left: 5px; /* Ändere den Abstand nach Bedarf */
    cursor: help;

}
