/* ---------------------------- */
/* Loginseite Styles – index.css */
/* ---------------------------- */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff; /* Weißer Hintergrund */
  color: #1a335b;
}

.login-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: #ffffff;
}

.logo {
  max-width: 180px;
  margin-bottom: 30px;
}

.login-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.login-box h1 {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 600;
  color: #1a335b;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-form input {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  background-color: #f9f9f9;
  transition: border 0.2s;
}

.login-form input:focus {
  border-color: #fb7598;
  outline: none;
}

.login-form button {
  padding: 14px;
  background-color: #fb7598;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-form button:hover {
  background-color: #e14b75;
}

