.container-recuperar {
  max-width: 400px;
  margin: 80px auto;
  padding: 30px;
  background-color: #ffffffdd;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.container-recuperar h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.container-recuperar p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

#formRecuperar input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

#formRecuperar button {
  width: 100%;
  padding: 12px;
  background-color: #0ebcc8;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#formRecuperar button:hover {
  background-color: #028d97;
}

#mensaje {
  margin-top: 10px;
  font-size: 14px;
  color: green;
}
.fondo {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('assets/images/fondoazul.png');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}
.volver {
  display: block;
  margin-top: 20px;
  color: #028d97;
  text-decoration: none;
}

.volver:hover {
  text-decoration: underline;
}
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-image: url('/assets/images/fondoazul.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

input[type="email"] {
  width: 100%;
  padding: 0.7rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

button {
  background-color: #0ebcc8;
  color: white;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background-color: #028d97;
}

.mensaje {
  margin-top: 1rem;
  color: green;
}