/* temi/pasqua.css */

body {
  background-color: #fffbe6;
  background-image: url('../immagini/sfondo_pasqua.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative; /* 👈 AGGIUNGI QUESTO */
  z-index: 0;
}


.login-container {
  background-color: rgba(255, 255, 255, 0.3); /* sfondo semitrasparente */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari */
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
  padding: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.login-container h2 {
  color: #d63384;
}

.login-container button {
  background-color: #ff69b4;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.login-container button:hover {
  background-color: #ff1493;
}

input[type="email"],
input[type="password"] {
  border: 1px solid #ffb6c1;
  background: #fff0f5;
  color: #4b2e83;
}

input[type="checkbox"] {
  accent-color: #d63384;
}

.link-container a {
  color: #d63384;
}

.link-container a:hover {
  text-decoration: underline;
}

.beta-btn {
  background-color: #ffc107;
  color: #4b2e83;
  font-weight: bold;
}

.beta-btn:hover {
  background-color: #e0a800;
}
