/* FORM SIMULATION */
@import url("../core/reset.css");
@import url("../core/variables.css");
@import url("../style.css");
@import url("../../components/header/header.css");

.main.form {
  /* Display */
  gap: 32px;
}

.main.form > .main_title_box {
  /* Display */
  gap: 16px;
}

.main.form > .main_content_box {
  /* Size */
  height: 100%;
  /* Display */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 49px;
  /* Position */
  position: relative;
}

.form_box {
  /* Display */
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.input_box {
  /* Display */
  display: flex;
  gap: 4px;
}

.input.small {
  /* Size */
  width: 105px;
}

.input.link {
  /* Font */
  text-decoration: none;
  color: var(--link-font-color);
  font-weight: 600;
  /* Background-border */
  border-color: var(--link-font-color);
  /* Display */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.input.link.con_datos {
  /* Font */
  color: var(--main-font-color);
  /* Background-border */
  border-color: var(--border-input);
}

.input.link:hover,
.input.link:active,
.input.link:hover > svg > path,
.input.link:active > svg > path {
  /* Font */
  color: var(--hover-link-font-color);
  stroke: var(--hover-link-font-color);
  /* Background-border */
  background-color: var(--background-site);
  border-color: var(--hover-link-font-color);
}

.input_button_box {
  /* Position */
  position: relative;
}

.button.right {
  /* Font */
  font-size: 18px;
  /* Size */
  width: 73px;
  min-width: 73px;
  min-height: 48px;
  /* Position */
  position: absolute;
  top: 0;
  right: 0;
}

.fieldset_radio {
  /* Display */
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fieldset_radio div:first-child {
  /* Margin-padding */
  margin-top: 4px;
}

.radio_input {
  cursor: pointer;
  /* Ocultamos el radio input nativo */
  display: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  margin: 0;
}

.radio_label {
  cursor: pointer;
  /* Size */
  width: 100%;
  height: 48px;
  /* Background-border */
  background-color: var(--background-radio-input);
  border: 1px solid var(--border-input);
  border-radius: 5px;
  /* Margin-padding */
  padding: 8px;
  /* Display */
  display: flex;
  align-items: center;
}

.radio_input:checked + .radio_label,
.radio_label:hover,
.radio_label:active {
  /* Background-border */
  background-color: var(--hover-background-radio-input);
  border: 2px solid var(--hover-border-radio-input);
}

.ubicacion_list_item {
  /* Display */
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ubicacion_list_item > p {
  /* Margin-padding */
  padding-left: 8px;
}

/* Error */
.form_submit_box {
  /* Display */
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form_error_text {
  /* Font */
  color: var(--error-message);
  font-size: 14px;
  line-height: 21px;
}

.form_error_input {
  /* Background-border */
  border-color: var(--error-message);
}

.ref_catastral_result {
  /* Font */
  color: var(--link-font-color);
  font-weight: 700;
  /* Margin-padding */
  padding-top: 17px;
  /* Display */
  display: flex;
  align-items: start;
  gap: 8px;
}

.ref_catastral_result ul {
  list-style: none;
  /* Font */
  font-weight: 500;
  /* Margin-padding */
  padding-top: 12px;
}

.ref_catastral_result.error {
  /* Font */
  color: var(--error-message);
}

.fieldset {
  /* Display */
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legend {
  /* Font */
  color: var(--link-font-color);
  font-size: 20;
  font-weight: 700;
  /* Size */
  width: 100%;
  /* Background-border */
  border-bottom: 1px solid var(--border);
  /* Margin-padding */
  padding-bottom: 19px;
  margin-bottom: 19px;
}
