/* ==============================
Archivo: registro.css
Ubicación: /assets/css/
Descripción: Estilos exclusivos para el formulario de registro
============================== */

#registro-form {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.registro-container {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.registro-container h1 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 28px;
  color: #0056b3;
}

.registro-container p {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

form fieldset {
  border: none;
  margin-bottom: 30px;
  padding: 0;
}

form fieldset legend {
  font-weight: 700;
  color: #0056b3;
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
}

form fieldset legend span {
  font-weight: 400;
  font-size: 14px;
  color: #777;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

form input[type="text"],
form input[type="email"],
form input[type="password"] {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  font-size: 14px;
}

button[type="submit"] {
  width: 100%;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .registro-container {
    padding: 25px;
  }

  form input {
    font-size: 16px;
  }
}
