/* Estilos personalizados para formulario registro módulo */

.custom-registration-form {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}

.custom-registration-form h2 {
  color: #02414A;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.custom-registration-form label {
  display: block;
  font-weight: 600;
  color: #02414A;
  margin-bottom: 6px;
}

.custom-registration-form label .required {
  color: #d9534f;
  margin-left: 4px;
}

.custom-registration-form input[type="text"],
.custom-registration-form input[type="email"],
.custom-registration-form input[type="tel"],
.custom-registration-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  margin-bottom: 18px;
  transition: border-color 0.3s ease;
}

.custom-registration-form input[type="text"]:focus,
.custom-registration-form input[type="email"]:focus,
.custom-registration-form input[type="tel"]:focus,
.custom-registration-form select:focus {
  border-color: #009fa2;
  outline: none;
  box-shadow: 0 0 5px #009fa2;
}

.custom-registration-form button {
  width: 100%;
  background-color: #02414A;
  color: white;
  border: none;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-registration-form button:hover {
  background-color: #009fa2;
}

.custom-registration-form fieldset {
  border: 1px solid #ccc;
  padding: 15px 20px 20px 20px;
  margin-bottom: 25px;
  border-radius: 5px;
}

.custom-registration-form legend {
  font-weight: 700;
  color: #02414A;
  padding: 0 8px;
}

/* Responsive */
@media (max-width: 480px) {
  .custom-registration-form {
    padding: 20px;
  }
}
