/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Fondo degradado */
body {
  background: linear-gradient(135deg, #e6b3ff89, #d89affd8);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Tarjeta */
.card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1.5px solid rgb(92, 91, 91);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 400px;
  padding: 2rem;
}

/* Inputs */
.input-group {
  border-radius: 10px;
  overflow: hidden;
}

.input-group-text {
  background: #f210ae;
  color: white;
  border: none;
  padding: 10px 15px;
}

.form-control {
  border: 2px solid #f210ae;
  padding: 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.form-control:focus {
  border-color: #f210ae;
  box-shadow: 0 0 8px rgba(0, 91, 187, 0.5);
}

/* Botón */
.btn-primary, .btn-success {
  background: #f210ae;
  border: none;
  font-size: 18px;
  padding: 12px;
  border-radius: 25px;
  transition: all 0.3s;
}

.btn-primary:hover,
.btn-success:hover {
  background: #ff97d9;
}

/* Enlaces */
p {
  margin-top: 15px;
  font-size: 14px;
  color: #333;
  text-align: center;
}

p a {
  color: #ff97d9;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

p a:hover {
  text-decoration: underline;
  color: #f210ae;
}

/* Alertas (para mensajes de error/success) */
.alert {
  font-size: 14px;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  text-align: center;
}