body {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  background: #3D1185;
  margin: 0;
  padding: 0;
}

/* Caja central */
.mf-card {
  background: #250B41;
  border-radius: 16px;
  padding: 32px;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.mf-card__title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.mf-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

/* Campo de correo */
.mf-form label {
  display: block;
  font-weight: 600;
  text-align: left;
  margin-bottom: 6px;
  font-size: 14px;
}

.mf-form input[type="email"] {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 2px solid #00B0F0;
  background: transparent;
  color: #fff;
  font-size: 15px;
  outline: none;
  margin-bottom: 20px;
}

.mf-form input:focus {
  border-color: #00E6FF;
}

/* Botones */
.mf-btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mf-btn {
  width: 100%;
  font-weight: 700;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.25s ease;
}

/* Botón rojo: Buscar */
.mf-btn--buscar {
  background: #E43037;
  color: #fff;
  border: none;
}
.mf-btn--buscar:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* Botón celeste: Cancelar */
.mf-btn--cancelar {
  background: transparent;
  border: 2px solid #00B0F0;
  color: #00E6FF;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.mf-btn--cancelar:hover {
  background: rgba(0,230,255,0.1);
  transform: translateY(-2px);
}

/* Footer */
.mf-footer {
  text-align: center;
  padding: 16px;
  color: #fff;
  font-size: 13px;
}
.mf-legal {
  color: #fff;
  opacity: .85;
  text-decoration: none;
}
.mf-legal:hover {
  text-decoration: underline;
}
