/* Center the logo image */
.eaglespic {
  display: block;
  margin: 0 auto 30px auto;
  max-width: 200px;
  height: auto;
}

/* Title */
.registro {
  font-family: 'Lucida Sans', 'Lucida Grande', Verdana, sans-serif;
  text-align: center;
  color: whitesmoke;
  margin-bottom: 20px;
}

/* Body */
body {
  background: radial-gradient(circle, #002f72, #00194a);
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 20px 10px;
  max-width: 600px;
  margin: 0 auto;
}


/* Form labels */
.nameguardian,
.kidsname,
.number,
.padece,
.enfermedad,
.categoria {
  font-size: 22px;
  display: block;
  margin-bottom: 6px;
  color: white;
  font-weight: 600;
}
.emailguardian {
  font-size: 22px;
  display: block;
  margin-bottom: 6px;
  color: white;
  font-weight: 600;
}

/* Group spacing */
.form-group {
  margin-bottom: 20px;
}

/* Inputs and select */
input[type='text'],
input[type='email'],
select,
textarea {
  width: 100%;
  max-width: 100%;
  padding: 8px 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: inherit;
}

/* Textarea */
.locked-textarea {
  resize: none;
  height: 80px;
}

/* Radio label colors */
.si,
.no {
  color: white;
  font-weight: 500;
  font-size: 18px;
  margin-right: 15px;
  display: inline-block;
}

/* Submit button */
.submit-btn {
  background-color: #005bbb;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
  display: block;
  margin: 30px auto 0 auto;
  transition: background-color 0.3s ease;
  font-weight: 600;
  width: 100%;
  max-width: 250px;
}

.submit-btn:hover {
  background-color: #003f7d;
}
.footer {
  text-align: center;
  margin-top: 40px;
  color: #ccc;
  font-size: 14px;
}
