* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: MazdaType, helvetica, arial, sans-serif;
}

.containner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: auto;
}

.formDta {
  width: 60%;
  padding: 60px;
  border: solid 2px #948f8f;
  border-radius: 5px;
  box-shadow: inset 0 -3em 3em rgba(0, 0, 0, 0.1), 0 0 0 2px rgb(255, 255, 386),
    0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
}

.labelFlex {
  display: flex;
  justify-content: space-between;
  font-family: MazdaType, helvetica, arial, sans-serif;
}

.labelOne {
  display: flex;
  flex-direction: column;
  width: 48%;
  padding-bottom: 10px;
  font-family: MazdaType, helvetica, arial, sans-serif;
}

.labelOneCode {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 10px;
  font-family: MazdaType, helvetica, arial, sans-serif;
}

.control-label {
  padding-bottom: 10px;
}

input {
  border: none;
  outline: none;
  border-bottom: solid 2px #948f8f;
  font-family: MazdaType, helvetica, arial, sans-serif;

  &:active {
    border-bottom: solid 2px #948f8f;
  }
}

select {
  border: none;
  outline: none;
  border-bottom: solid 2px #948f8f;

  &:active {
    border-bottom: solid 2px #948f8f;
  }
}

select {
  border: none;
  border-bottom: solid 2px #948f8f;
}

.errorText {
  display: block;
  opacity: 0;
  color: red !important;
  padding-top: 8px;
  margin: 0 !important;
}

.labelOneCheckbox {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 20px;
}

.buttSpiceSu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin: auto;
}

.btn {
  padding: 10px 60px;
  background: #000;
  color: #fff;
  border: none;
  transition: ease-in-out;
}

.btn:hover {
  background-color: #910a2d;
}

.tycCredit {
  color: #000;
}

.grupo__nombre-incorrecto {
  color: red;
}

.grupo__nombre-incorrecto-input {
  border-bottom: solid 2px red;
}

.formulario__mensaje__exitoso {
  color: green;
  opacity: 0;
}

.formulario__mensaje__exitoso-activo {
  color: rgb(6, 252, 6) !important;
  opacity: 1;
}

.formulario__mensaje__error {
  color: rgb(202, 3, 3) !important;
  font-weight: 700;
  margin: 0 !important;
}

.grupo__input-active {
  color: red !important;
}

.select-avtive {
  border: none;
  color: red;
  border-bottom: solid 2px red;
}

.iconoPrecaucion {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: red;
    padding: 6px 40px; */
  opacity: 0;
}

.iconoPrecaucion-activo {
  display: flex;
  justify-content: center;
  /* align-items: center;
    background-color: red;
    padding: 6px 40px; */
  opacity: 1;
}

.iconoPrecaucion img {
  width: 20px;
  height: 20px;
}

.inputFlexTyc {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 13px;
}

@media only screen and (max-width: 1000px) {
  .formDta {
    width: 80%;
  }
}

@media only screen and (max-width: 900px) {
  .formDta {
    width: 90%;
  }

  .labelFlex {
    flex-direction: column;
  }

  .labelOne {
    width: 100%;
  }

  .labelOneCheckbox {
    font-size: 12px;
  }

  .formulario__mensaje__error {
    font-size: 8px;
  }
  #terminos {
    width: 30%;
  }
}
