/* Opo180 - Formulario clase de prueba (v1.0.0) */

.opo180-cf{
  max-width: 720px;
  margin: 0 auto;
  padding: 6px 0;
  font-family: inherit;
}

.opo180-cf__msg{
  padding: 12px 14px;
  border-radius: 14px;
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.35;
}

.opo180-cf__msg--err{
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.22);
}

.opo180-cf__form{
  display: grid;
  gap: 16px;
}

.opo180-cf__field{
  display: grid;
  gap: 8px;
}

.opo180-cf__label{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.opo180-cf__field input[type="text"],
.opo180-cf__field input[type="email"],
.opo180-cf__field input[type="tel"],
.opo180-cf__field select{
  width: 100%;
  box-sizing: border-box;
  padding: 10px 32px;
  border: 1px solid #2D2D2D3D;
  background-color: #F4F5F8;
  border-radius: 999px;
  outline: none;
  font-size: 14px;
  font-family: "Satoshi", Sans-serif;
  line-height: 16px;
  font-weight: 300;
  letter-spacing: 1.5px;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.opo180-cf__field input::placeholder{
  color: rgba(17, 24, 39, 0.45);
}

/* Select: estilo "pill" con flecha a la derecha */
.opo180-cf__field--select{
  position: relative;
}

.opo180-cf__field--select select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 54px;
  color: rgba(17, 24, 39, 0.70);
  background-color: #F4F5F8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='%23111827' fill-opacity='.55' d='M7 10a1 1 0 0 1 1.7-.7L12 12.6l3.3-3.3A1 1 0 1 1 16.7 10.7l-4 4a1 1 0 0 1-1.4 0l-4-4A1 1 0 0 1 7 10Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.opo180-cf__field--select select:valid{
  color: rgba(17, 24, 39, 0.92);
}

/* Focus */
.opo180-cf__field input:focus,
.opo180-cf__field select:focus{
  border-color: rgba(17, 24, 39, 0.32);
  box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.06);
}

.opo180-cf__terms, .opo180-cf__terms a{
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-family: "Satoshi", Sans-serif;
  color: #2D2D2D;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 1.5px;
}

.opo180-cf__terms input[type="checkbox"]{
  width: 18px;
  height: 18px;
  border-radius: 4px;
  position: relative;
  top: 6px;
}

.opo180-cf__terms label{
  cursor: pointer;
  user-select: none;
  color: #2D2D2D;
}

.opo180-cf__termsLink{
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.opo180-cf__termsLink:hover{
  text-decoration: underline;
}

.opo180-cf__btn, .opo180-cf__btn:hover, .opo180-cf__btn:active, .opo180-cf__btn:focus{
  background: transparent;
  border: 0;
  text-align: left;
  padding: 0;
  margin-top: 10px;
}

.opo180-cf__btnText{
  padding: 15px 32px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: #EDB926;
  color: #2d2d2d;
  transition: transform .06s ease, filter .15s ease;
  font-family: "Satoshi", Sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 16px;
}

.opo180-cf__btn:hover{
  filter: brightness(0.98);
}

.opo180-cf__btn:active{
  transform: translateY(1px);
}

.opo180-cf__btnIcon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #EDB926;
  position: relative;
  top: 4px;
  right: 5px;
}

.opo180-cf__btnIcon svg{
  display: block;
  fill: rgba(17, 24, 39, 0.85);
}

/* Responsive */
@media (max-width: 420px){
  .opo180-cf__btn{
    width: 100%;
    justify-content: space-between;
  }
}
