@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,700&display=swap');

body {
  background: #fff;
  overflow: auto;
  padding: 0;
  color: #737373;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.btnTycsa {
  background-color: #0f538d;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: .7rem;
  font-weight: 600;
  cursor: pointer;
  display: table;
  transition: .3s;
  border: 0;
  margin: 7px;
}

.btnTycsa:hover {
  background-color: #141414;
}

.box {
  width: 100%;
  min-height: 90vh;
  overflow: auto;
  background: #fff url(bg-medipass-fondo.jpg) no-repeat center;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 50px;
}

.contenedor {
  max-width: 1170px;
  display: block;
  margin: 1% auto;
}

.box .contenedor img {
  max-width: 250px;
  display: block;
  margin: 20px auto;
}

.flex_logos {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

h2.titulo {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
  color: #1b181e;
  text-align: center;
}

h2.titulo b {
  font-weight: 700;
}

.box-form {
  width: 90%;
  display: block;
  margin: 0 auto;
  padding: 0 10px;
  min-width: 300px;
  max-width: 450px;
  margin-top: 40px;
}

fieldset {
  border: 0;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="submit"],
select,
textarea {
  background: #fff;
  display: block;
  width: 90%;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 0 9px rgba(0, 0, 0, 0.12);
  border: 1px solid #f0f0f0;
  -webkit-border: 1px solid #f0f0f0;
  border-radius: 5px;
  min-width: 200px;
  margin: 15px auto;
  padding: 15px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: #787878;
}

.seleccion {
  width: 96%;
  margin-top: 0;
}

input[type="submit"] {
  background: linear-gradient(to right, #b52f8a, #e61d35);
  box-shadow: none;
  padding: 15px 0;
  width: 95.5%;
  color: #fff;
  min-height: 30px;
  border-radius: 50px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background: linear-gradient(to right, #b52f8a, #b52f8a);
}

.copy {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 10px solid #0f538d;
  /* border-image: linear-gradient(to right, #fdbe01 0%, #754d99 25%, #b52f8a 50%, #e61d35 75%, #ee7214 100%) 1; */
}

.copy p {
  text-align: Center;
  font-size: 12px;
  color: #565656;
  font-weight: 400;
}

label.selects {
  margin-left: 16px;
  margin-bottom: 0;
  font-size: 14px;
  color: #333;
}

.input_flex {
  display: flex;
}

@media (max-width:767px) {
  .flex_logos {
    flex-direction: column;
    gap: 10px;
  }
}