* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: DINPro, arial;
}

:root {
  --GrisClaro: #f8f9fb;
  --GrisMedio: #bababa;
  --GrisLine: #d1d1d1;
  --GrisLine50: #d1d1d18c;
  --AzulProfundo: #204780;
  --AzulClaro: #14c1ea;
  --AzulNeon: #00ffff;
  --Naranjado: #ff5c39;
  --AlternativoNegro: #333333;
  --Negro: #000000;
  --Blanco: #ffffff;
  --AzulETB: #0092bc;
  --inputs: #f4f4f4;
}

.ContainerPopup {
  /*background: rgba(0, 0, 0, 0.39);*/
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.PopupLey {
  width: 846px;
  height: 860px;
  background-color: var(--Blanco);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  gap: 5px;
  padding: 40px 70px;
  position: relative;
  top: 15px;
}
.PopupLey p {
  text-align: center;
}
.TitleLey {
  color: var(--AzulETB, #0092bc);
  font-family: DINPro;
  font-size: 44.528px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-align: center;
}
.ContainerInputLey {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.input_field {
  background: var(--Blanco);
  border: 2px solid var(--Negro);
  border-radius: 2vh;
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 1vh;
  min-height: 60px;
  position: relative;
  transition: 0.6s ease-in-out;
  width: 300px;
}
.field_name {
  background: linear-gradient(var(--Blanco) 50%, var(--Blanco) 50%);
  border-radius: 1vh 1vh 0 0;
  color: var(--Negro);
  font-size: 1.1rem;
  font-weight: 600;
  left: 3vh;
  padding: 0 1vh;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: 0.6s ease-in-out;
  word-break: keep-all;
  z-index: 1;
}
.input_field > div {
  max-height: 100px;
  width: 100%;
}
.field_type_input,
.field_type_textarea {
  border: none;
  border-radius: 2vh;
  color: var(--Negro);
  font-size: 1rem;
  outline: none;
}

.field_type_input {
  display: block;
  height: 56px;
  padding: 0 2vh;
  width: 100%;
}
input:focus::placeholder {
  color: transparent;
}
.input_field:focus-within > .field_name {
  color: var(--AzulETB);
  left: 0;
  -webkit-transform: translate(calc(150px - 50%), -50%);
  transform: translate(calc(150px - 50%), -50%);
}
.ContainerCheckboxLey {
  position: relative;
  width: 300px;
  padding: 20px;
  border: 1px dashed var(--Negro);
  border-radius: 20px;
}
.SelectLey {
  width: 90%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 20px;
  margin: 5px 10px;
  outline: none;
  border: none;
  font-size: 1rem;
  position: relative;
  left: 2%;
}

.SelectLeyArrow {
  z-index: 1;
  position: absolute;
  pointer-events: none;
  right: 10px;
}

.LineLey {
  width: 40%;
  border: none;
  border-top: 1px dashed #000;
  margin: 10px 0;
}
.ParrafoLey2 {
  color: var(--AzulETB);
  font-weight: 700;
}
.inputLey {
  width: 100%;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
.InputAlternativo {
  width: 80%;
  border: none;
  height: 60px;
  position: absolute;
  top: 0;
  left: 15%;
  outline: none;
  font-size: 1rem;
}
input::placeholder {
  font-size: 1rem; /* El tamaÃ±o de fuente que desees */
}

.CheckLey2300 {
  width: 20px;
  height: 20px;
}
.btnSendLey {
  background-color: var(--AzulETB);
  color: var(--Blanco);
  padding: 20px 40px;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 20px 0 0 0;
}
.btnSendLey2 {
  background-color: var(--GrisMedio);
  color: var(--Blanco);
  padding: 10px 35px;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 5px 0 0 0;
  cursor: pointer;
}
.ContentInput {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 425px) {
  .PopupLey {
    width: 95%;
    margin: 600px 0 0 0;
    height: auto;
    padding: 40px;
  }
  .ModalSubContainer {
    padding: 0;
  }
}