/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg, #e6b3ff, #d89aff);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Card */
.card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.card h2 {
  font-weight: bold;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Input */
.input-group {
  display: flex;
  align-items: center;
  border: 2px solid #f210ae;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.input-group-text {
  background: #f210ae;
  padding: 0.8rem;
  color: white;
}

.form-control {
  flex: 1;
  border: none;
  padding: 0.8rem;
  outline: none;
}

.form-control::placeholder {
  color: #999;
}

/* Botón */
.btn-primary {
  background: #f210ae;
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 25px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #ff4fc4;
}

/* Links */
p {
  margin-top: 1rem;
  font-size: 14px;
}

p a {
  color: #f210ae;
  font-weight: bold;
  text-decoration: none;
}

p a:hover {
  text-decoration: underline;
}
