/* Login-Formular Styling */
.kegel-login-wrapper {
  max-width: 480px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: system-ui, sans-serif;
}

.kegel-login-wrapper form {
  display: flex;
  flex-direction: column;
}

.kegel-login-wrapper label {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #333;
}

.kegel-login-wrapper input[type="text"],
.kegel-login-wrapper input[type="password"] {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #fff;
  transition: border-color 0.2s ease;
}

.kegel-login-wrapper input[type="text"]:focus,
.kegel-login-wrapper input[type="password"]:focus {
  border-color: #007cba;
  outline: none;
}

.kegel-login-wrapper input[type="checkbox"] {
  margin-right: 0.5rem;
}

.kegel-login-wrapper input[type="submit"] {
  background-color: #007cba;
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.kegel-login-wrapper input[type="submit"]:hover {
  background-color: #005fa3;
}

.kegel-login-wrapper p {
  margin-top: 1rem;
  text-align: center;
}

.kegel-login-wrapper a {
  color: #007cba;
  text-decoration: none;
}

.kegel-login-wrapper a:hover {
  text-decoration: underline;
}
