/* Allgemeine Styles */
    .container-forms {
    width: 300px;
    max-width: 400px;
    margin: 30px auto;
    padding: 20px;
    background-color: #f2f2f2;
    border-radius: 5px;
    border: thin solid #dddddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .container-forms h1 {
    text-align: center;
    color: #333;
  }
  
  .container-forms label {
    display: block;
    margin-bottom: 5px;
    color: #333;
  }
  
  .container-forms input[type="text"],
  .container-forms input[type="password"],
  .container-forms  input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
  }
  
  .container-forms input[type="submit"]{
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .login-button{
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    text-align: center;
  }
  .container-forms input[type="submit"]:hover {
    background-color: #555;
  }
  
  .container-forms .error {
    color: red;
    margin-bottom: 10px;
  }
  
  .container-forms .success {
    color: green;
    margin-bottom: 10px;
  }
  
  /* Registrierungsformular spezifische Styles */
  #registrierung-form {
    margin-top: 20px;
  }
  
  /* Loginformular spezifische Styles */
  #login-form {
    margin-top: 20px;
  }

  .register-link{
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-size: 12px;
  }

 