/* public/css/esqueci-senha.css */

/* Reset básico */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: url('/imagens/wallpaper.jpg')
    no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.esqueci-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 18px;
}

.esqueci-box {
  background: rgba(141, 73, 37, 0.85);
  padding: 40px 30px;
  border-radius: 15px;
  width: 360px;
  box-shadow: 0 0 30px rgba(197, 125, 86, 0.8);
  animation: fadeIn 0.9s ease forwards;
}

.esqueci-box h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #f7ede3;
  text-align: center;
}

.esqueci-box p {
  font-size: 1rem;
  margin-bottom: 25px;
  text-align: center;
  font-style: italic;
}

.esqueci-box form {
  display: flex;
  flex-direction: column;
}

.esqueci-box label {
  font-weight: bold;
  margin-bottom: 6px;
  color: #e9d8c7;
}

.esqueci-box input[type="email"] {
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  margin-bottom: 18px;
  font-size: 1rem;
  height: 40px;
  width: 100%;
  outline: none;
  transition: all 0.25s ease;
}

.esqueci-box input[type="email"]:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,.25);
}

.btn-enviar {
  width: 200px;
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(90deg, #8d4925, #c57d56);
  border: none;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  text-align: center;
  display: block;
  margin: 0 auto;
  transition: filter 0.25s ease;
}

.btn-enviar:hover { filter: brightness(1.05); }
.btn-enviar:disabled { opacity: .7; cursor: not-allowed; }

/* ✅ Mensagens: sempre branco (fundo escuro) */
.msg{
  margin-top: 12px;
  font-weight: 900;
  text-align: center;
  line-height: 1.35;
  color: #ffffff;                 /* sempre branco */
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.18);
}
.msg.ok{ background: rgba(255,255,255,.10); }
.msg.err{ background: rgba(0,0,0,.24); }

/* ✅ Voltar ao login: branco e sem sublinhado */
.voltar-login {
  display: block;
  margin-top: 18px;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  opacity: 0.95;
}

.voltar-login:hover {
  opacity: 1;
  text-decoration: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}