/**Ganzer Bereich**/
* {
    font-family: 'Arima';
}
/* arima-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Arima';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/arima-v5-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* arima-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Arima';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/arima-v5-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* Hintergrund */
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to top, #2e0057, #6a0dad);
  background-image: url(https://cdn.pixabay.com/photo/2018/08/23/07/35/new-year-background-3625405_1280.jpg); /* Optional: Hintergrundbild einfügen */
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

/* Container */
.container {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

/* Login-Box */
.login-box {
  width: 300px;
  text-align: center;
}

/* Überschrift */
.login-box h2 {
  margin-bottom: 25px;
  font-size: 28px;
}

/* Eingabefelder */
.input-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  width: 280px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0 10px;
}

.input-box input {
  flex: 1;
  padding: 12px;
  border: none;
  background: transparent;
  color: white;
  font-size: 14px;
  outline: none;
}

.input-box i {
  color: white;
  margin-left: 10px;
}

/* Optionen */
.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  margin-bottom: 20px;
}

.options a {
  color: white;
  text-decoration: none;
}

/* Button */
.login-btn {
  width: 100%;
  padding: 12px;
  background-color: white;
  color: black;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-btn:hover {
  background-color: white;
}

/* Registrieren */
.register-link {
  font-size: 12px;
  margin-top: 15px;
}

.register-link a {
  color: white;
  text-decoration: underline;
}

a {
    text-decoration: none;
    color: white;
}