/* Estilo ajustado para a página de recuperação de senha, com a mesma cor do redefinir_senha */

body {
  background-color: #121212;
  color: #ddd;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

.redefinir-container {
  max-width: 480px;
  margin: 60px auto;
  padding: 30px 50px;
  background-color: #151515;
  border: 2px solid #00875a; /* Verde igual ao da redefinir senha */
  border-radius: 16px;
  box-shadow: 0 0 18px rgba(0, 135, 90, 0.6);
}

.redefinir-container h2 {
  text-align: center;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 2rem;
  color: #00b37e; /* Verde claro */
}

.redefinir-container label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #c8fadc; /* Cor verde mais suave */
}

.redefinir-container input[type="email"] {
  width: 100%;
  padding: 10px 18px;
  margin-bottom: 20px;
  border: 2px solid #00875a;
  border-radius: 10px;
  background-color: #222;
  color: #d6fbd6; /* Texto claro */
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.redefinir-container input[type="email"]:focus {
  border-color: #00b37e;
  outline: none;
  box-shadow: 0 0 12px #00b37e;
}

/* Botão estilizado */
.btn-login {
  display: block;
  width: 100%;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #121212;
  background: linear-gradient(135deg, #00b37e 0%, #00e394 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 179, 126, 0.6);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  text-align: center;
  text-decoration: none;
}

.btn-login:hover,
.btn-login:focus {
  box-shadow: 0 10px 20px rgba(0, 227, 148, 0.8);
  transform: translateY(-2px);
  outline: none;
}

.mensagem {
  background-color: #1f1f1f;
  border: 1px solid #00b37e;
  padding: 15px;
  border-radius: 10px;
  color: #b9f3c1;
  margin-top: 20px;
  text-align: center;
  display: none;
}

.mensagem.sucesso {
  border-color: #4CAF50; /* Verde */
  background-color: #3e8e41;
}

.mensagem.erro {
  border-color: #F44336; /* Vermelho */
  background-color: #e57373;
  color: #fff; /* Texto branco para erro */
}

.btn-login {
  display: block;
  width: 100%;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #121212;
  background: linear-gradient(135deg, #00b37e 0%, #00e394 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 179, 126, 0.6);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  text-align: center;
  text-decoration: none;
  margin-bottom: 15px; /* Adicionando margem inferior */
}

.btn-login:hover,
.btn-login:focus {
  box-shadow: 0 10px 20px rgba(0, 227, 148, 0.8);
  transform: translateY(-2px);
  outline: none;
}


