/* Stile base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: Arial, sans-serif;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Video full screen */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}

/* Overlay con sfocatura */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(5px);
  z-index: -1;
}

/* Contenitore form */
.form-container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Card login */
.login-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.login-card img {
  width: 150px;
  margin-bottom: 20px;
}

.login-card h4 {
  margin-bottom: 10px;
  font-size: 24px;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-control {
  padding: 10px;
  font-size: 14px;
  border-radius: 5px;
  width: 100%;
  border: 1px solid #ccc;
}

.btn-primary {
  background: #007bff;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #0056b3;
}

.password-group {
  position: relative;
}

.mostra-password {
  cursor: pointer;
  font-size: 13px;
  color: #007bff;
  position: absolute;
  right: 10px;
  top: 36px;
}

.checkbox {
  font-size: 14px;
}

.footer {
  margin-top: 15px;
  font-size: 12px;
  color: #aaa;
}

.error {
  color: #d63031;
  font-size: 14px;
  margin-bottom: 10px;
}
.success {
  color: #28a745;
  background-color: #eaf9f0;
  padding: 10px;
  margin-bottom: 15px;
  text-align: center;
  border: 1px solid #bde5cb;
  border-radius: 4px;
}
