/* RESET PASSWORD PAGE - stile coerente con LOGIN */

/* Assicura che html/body occupino tutta l'altezza */
html, body {
  height: 100%;
  margin: 0;
}

/* Sfondo coerente con login */
body {
  background: url('/img/bkg_Body2.png') no-repeat center center fixed;
  background-size: cover;
}

/* Centra tutto */
.forgot-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

/* Contenitore principale effetto vetro */
.main-forgot-contain {
  background: rgba(0, 0, 0, 0.6);
  padding: 50px 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  max-width: 420px;
  width: 90%;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 3;
}

/* Icona circolare in alto */
.forgot-circul {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.forgot-icon-circul {
  font-size: 38px;
  color: #ffa43b;
}

/* Titolo */
.main-forgot-contain h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 500;
}

/* Campi input */
.forgot_input {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  padding: 10px 15px;
}
.forgot_input input {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  width: 100%;
  outline: none;
}
.forgot_input input::placeholder {
  color: rgba(255,255,255,0.6);
}
.forgot_input .forgot-right-icon {
  color: #ffa43b;
  font-size: 18px;
  margin-left: 8px;
}

/* Pulsante invio */
.btn-forgot {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  background: linear-gradient(90deg, #ff8c1a, #ffae42);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-forgot:hover {
  background: linear-gradient(90deg, #d97a12, #f0a32f);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Link sotto */
.goto-forgot {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 15px;
}
.goto-forgot a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.goto-forgot a:hover {
  color: #ffae42;
}

/* Responsive */
@media (max-width: 480px) {
  .main-forgot-contain {
    padding: 30px 20px;
  }
  .forgot_input input {
    font-size: 15px;
  }
}
