.error-message#error-documentType {
  margin-top: 8px;
}
.error-message {
  color: #d32f2f;
  font-size: 13px;
  margin-top: 2px;
  margin-bottom: 8px;
  min-height: 18px;
}

.container {
  max-width: 420px;
  margin: 30px auto;
  padding: 30px 30px 20px 30px;
  background: #f3f8ff;
  border-radius: 12px;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.04);
}


.documentInfo {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}


.documentType, .documentNumber {
  flex: 1;
  display: flex;
  flex-direction: column;
}


.documentInfo select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #b5c9e2;
  background: #fff;
  font-size: 15px;
}


input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 10px;
  margin: 4px 0 8px 0;
  border-radius: 6px;
  border: 1px solid #b5c9e2;
  box-sizing: border-box;
  font-size: 15px;
}

label.input-field {
  font-weight: 600;
  color: #2a5d9f;
  font-size: 15px;
}

span.optional {
  color: #7a8ca3;
  font-weight: 400;
  font-size: 13px;
  margin-left: 2px;
}

span.obligatorio {
  color: #2a5d9f;
  font-weight: 400;
  font-size: 13px;
  margin-left: 2px;
}

.checkbox-section {
  margin: 10px 0 10px 0;
}

.datos-personales {
  font-size: 14px;
  color: #222;
}

.datos-personales a {
  color: #2a5d9f;
  text-decoration: underline;
}

.radio-group {
  margin: 8px 0 8px 0;
  display: flex;
  gap: 18px;
  align-items: center;
}

.radio-group label {
  font-size: 15px;
  color: #222;
  font-weight: 400;
}

.checkbox-group {
  margin-bottom: 10px;
}

.checkbox-group label {
  font-size: 15px;
  color: #222;
  font-weight: 400;
}

.button-section {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.submit-btn {
  background: #8cc63f;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 12px 60px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.submit-btn:hover {
  background: #7ab532;
}