* {
  margin: 0;
  padding: 0;
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  min-height: 100vh;
  width: 100%;
  background-image: url(photos/background/background2.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  width: 300px;
  text-align: center;
  font-size: 30px;
}

form label {
  display: block;
  text-align: left;
  margin: 10px 0 5px;
  color: #555;
}

form input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 15px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: medium;
  box-sizing: border-box;
}

/* --- Campo password con occhio accanto 👁️ --- */
.password-container {
  position: relative;
}

.password-container input {
  width: 100%;
  padding-right: 35px; /* spazio per l’occhio */
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  user-select: none;
  font-size: 18px;
  color: #666;
}

.toggle-password:hover {
  color: #000;
}

button {
  background-color: #F5F0E6;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 30px;
}
