@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
  --color-white: #ffffff;
  --color-yellow: #c9af4c;
  --color-gey: #333;
  --color-light-grey: #8F8F8F;
}

/* Gotham-Book */
@font-face {
  font-family: "Gotham-Book";
  src: url("/fonts/Gotham-Book.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Gotham-Book-Italic*/
@font-face {
  font-family: "Gotham-BookItalic";
  src: url("/fonts/Gotham-BookItalic.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Gotham-Light*/
@font-face {
  font-family: "Gotham-Light";
  src: url("/fonts/Gotham-Light.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Gotham-Medium*/
@font-face {
  font-family: "Gotham-Medium";
  src: url("/fonts/Gotham-Medium.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Gotham-MediumItalic*/
@font-face {
  font-family: "Gotham-MediumItalic";
  src: url("/fonts/Gotham-MediumItalic.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Gotham-Thin*/
@font-face {
  font-family: "Gotham-Thin";
  src: url("/fonts/Gotham-Thin.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Gotham-Ultra*/
@font-face {
  font-family: "Gotham-Ultra";
  src: url("/fonts/Gotham-Ultra.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Gotham-Black */
@font-face {
  font-family: "Gotham-Black";
  src: url("/fonts/Gotham-Black.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Gotham-BlackItalic */
@font-face {
  font-family: "Gotham-BlackItalic";
  src: url("/fonts/Gotham-BlackItalic.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Gotham-Bold */
@font-face {
  font-family: "Gotham-Bold";
  src: url("/fonts/Gotham-Bold.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Gotham-BoldItalic */
@font-face {
  font-family: "Gotham-BoldItalic";
  src: url("/fonts/Gotham-BoldItalic.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.text-style {
  font-family: "Gotham-Book";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 27px;
}

* {
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
}

body {
  background: url("./../assets/fondo.png") no-repeat center center;
  background-size: cover;
  text-align: center;
  width: 100%;
  margin: 0;
  position: relative;
}

.form-gilead {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 141px);
  color: #c50f3c;
  margin: 0;
  font-family: "Gotham-Bold";
}

.form-gilead-form {
  max-width: 853px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.form-gilead-form .form-gilead-middle p {
  margin: 0 auto 25px;
  color: #c50f3c;
  font-family: "Gotham-Bold";
  font-size: 24px;
  line-height: 34px;
}
.form-gilead-form p {
  color: var(--color-white);
}
.form-gilead-form input[type=text] {
  margin: 0 auto 27px;
  width: 100%;
  height: 55px;
  border-radius: 15px;
  border: 2px solid #da7488;
  display: block;
  padding: 0 15px 0 28px;
  background: transparent;
  font-size: 16px;
  font-family: "Gotham-Book";
  color: #c50f3c;
}
.form-gilead-form input[type=checkbox] {
  border-radius: 8px;
  border: 2px solid #706665;
  background: transparent;
  height: 29px;
  width: 27px;
  vertical-align: top;
  margin-top: 5px;
  margin-right: 10px;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.form-gilead-form input[type=checkbox]:focus {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
}
.form-gilead-form input[type=checkbox]:checked {
  border: 2px solid #c50f3c;
  color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-gilead-form input[type=checkbox]:checked:before {
  content: "";
  display: block;
  background: #c50f3c;
  position: absolute;
  width: 18px;
  height: 19px;
  border-radius: 5px;
  top: 3.5px;
  left: 2.8px;
}
.form-gilead-form .req {
  font-size: 16px;
  font-family: "Gotham-Book";
  color: #987b55;
  line-height: 19px;
  max-width: 544px;
  text-align: left;
  margin-top: 30px;
}
.form-gilead-form .privacy {
  width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
}
.form-gilead-form .privacy a {
  font-family: "Gotham-Book";
  font-size: 18px;
  color: #006699;
  text-align: left;
  display: inline-block;
  text-decoration: none;
  line-height: 19px;
}
.form-gilead-form textarea {
  width: 100%;
  border: 2px solid #da7589;
  border-radius: 15px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
  resize: none;
  background: rgba(255, 255, 255, 0.36);
  height: 157px;
  padding: 22px 9px 9px 22px;
  font-size: 16px;
  font-family: "Gotham-Book";
  color: #c50f3c;
}
.form-gilead-form textarea::placeholder {
  color: #999;
  font-family: "Gotham-BookItalic";
  font-size: 24px;
}
.form-gilead-form input::placeholder {
  color: #c50f3c;
  font-family: "Gotham-Book";
  font-size: 16px;
}
.form-gilead-form input[type=text]:focus, .form-gilead-form input[type=text]:focus-visible {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border: 2px solid #da7488;
  outline: none;
}
.form-gilead-form textarea:focus, .form-gilead-form textarea:focus-visible {
  outline: none;
}
.form-gilead-form #myForm {
  position: relative;
  max-width: 480px;
}
.form-gilead-form .error {
  color: #c50f3c;
  text-align: center;
  font-size: 16px;
  font-family: "Gotham-Book";
  position: absolute;
  bottom: -50px;
  width: 100%;
}
.form-gilead-form #myForm2 .req {
  text-align: center;
  font-size: 19px;
}
.form-gilead-form button {
  max-width: 200px;
  width: 200px;
  border-radius: 15px;
  border: 0;
  margin: 30px auto 0;
  background: #c50f3c;
  display: block;
  text-transform: uppercase;
  color: #fff;
  font-family: "Gotham-Bold";
  font-size: 26px;
  padding: 27px 0;
  cursor: pointer;
}
.form-gilead-form button:hover {
  opacity: 0.9;
}
.form-gilead-form button:disabled {
  background: #bd7989;
  cursor: default;
  opacity: 1;
}
.form-gilead-form .user-data {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.form-gilead-bottom-left {
  position: absolute;
  bottom: 35px;
  text-align: left;
  left: 48px;
  font-size: 12px;
  color: #6c6e6e;
  font-family: "Gotham-Book";
}
.form-gilead-bottom-left a {
  color: #c50f3c;
  font-family: "Gotham-Bold";
}

.form-gilead-bottom {
  position: absolute;
  bottom: 23px;
  text-align: center;
  width: 251px;
  right: 48px;
}
.form-gilead-bottom img {
  display: inline-block;
}
.form-gilead-bottom .bottom-text {
  text-align: left;
  color: #000;
  margin-top: 10px;
  font-size: 14px;
  font-family: "Gotham-Black";
  float: right;
  width: 168px;
}

.form-gilead-top {
  position: absolute;
  top: 23px;
  text-align: center;
  width: 207px;
  right: 48px;
}
.form-gilead-top img {
  display: inline-block;
}

.contendSent {
  color: #c50f3c;
  max-width: 522px;
  margin: 70px auto 50px;
}
.contendSent p {
  font-family: "Gotham-Bold";
  font-size: 30px;
  line-height: 45px;
}

@media (min-width: 1200px) {
  .form-gilead {
    width: 100%;
  }
  .form-gilead .form-gilead-middle {
    min-width: 617px;
  }
  .form-gilead .form-gilead-middle p {
    min-width: 617px;
    font-size: 40px;
    line-height: 50px;
  }
  .form-gilead .form-gilead-form input[type=checkbox] {
    margin-top: 0;
  }
  .form-gilead .form-gilead-form .req {
    max-width: 100%;
  }
}
@media (max-width: 1200px) and (orientation: landscape) {
  .form-gilead {
    width: 100%;
  }
  .form-gilead .form-gilead-form .form-gilead-middle {
    max-width: 100%;
  }
  .form-gilead .form-gilead-form .form-gilead-middle p {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 14px;
    margin-top: 30px;
    text-align: center;
  }
  .form-gilead .form-gilead-form input[type=checkbox] {
    margin-top: 0;
    min-width: 22px;
  }
  .form-gilead .form-gilead-form input[type=text] {
    font-size: 14px;
    height: 40px;
  }
  .form-gilead .form-gilead-form textarea {
    font-size: 14px;
    height: 130px;
  }
  .form-gilead .form-gilead-form input::placeholder,
.form-gilead .form-gilead-form textarea::placeholder {
    font-size: 14px;
  }
  .form-gilead .form-gilead-form button {
    font-size: 16px;
    margin-top: 23px;
  }
  .form-gilead .form-gilead-form .privacy {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .form-gilead .form-gilead-form .privacy a {
    font-size: 12px;
    line-height: 18px;
  }
  .form-gilead .form-gilead-form .req {
    max-width: 100%;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px;
  }
  .form-gilead .form-gilead-bottom {
    width: 160px;
  }
  .form-gilead .form-gilead-bottom .bottom-text {
    margin-top: 10px;
    font-size: 13px;
    width: 138px;
  }
}
@media screen and (max-width: 730px) {
  .form-gilead .form-gilead-form .privacy {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 630px) {
  .form-gilead {
    width: 100%;
  }
  .form-gilead .form-gilead-form .form-gilead-middle {
    max-width: 500px;
  }
  .form-gilead .form-gilead-form .form-gilead-middle p {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 19px;
    margin-top: 36px;
  }
  .form-gilead .form-gilead-form input[type=checkbox] {
    margin-top: 0;
    min-width: 27px;
  }
  .form-gilead .form-gilead-form input[type=text] {
    font-size: 16px;
  }
  .form-gilead .form-gilead-form textarea {
    font-size: 16px;
  }
  .form-gilead .form-gilead-form input::placeholder,
.form-gilead .form-gilead-form textarea::placeholder {
    font-size: 16px;
  }
  .form-gilead .form-gilead-form button {
    font-size: 18px;
  }
  .form-gilead .form-gilead-form .privacy {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .form-gilead .form-gilead-form .privacy a {
    max-width: 450px;
    font-size: 14px;
    line-height: 20px;
  }
  .form-gilead .form-gilead-form .req {
    max-width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
  }
  .form-gilead .form-gilead-form #myForm .req {
    font-size: 16px;
    font-family: "Gotham-Book";
    color: #987b55;
    line-height: 19px;
    max-width: 544px;
    text-align: left;
    margin-top: 30px;
  }
  .form-gilead .form-gilead-bottom-left {
    width: 140px;
    left: 23px;
  }
  .form-gilead .form-gilead-bottom {
    width: 160px;
  }
  .form-gilead .form-gilead-bottom .bottom-text {
    margin-top: 10px;
    font-size: 13px;
    width: 138px;
  }
}
@media screen and (max-width: 470px) {
  body {
    background: url("./../assets/fondo_mobile.png") no-repeat center center;
    padding: 80px 0 0 0;
  }

  .form-gilead {
    width: 90%;
    margin: 0 auto 0;
    display: block;
    height: auto;
    padding-bottom: 50px;
  }
  .form-gilead .form-gilead-bottom-left,
.form-gilead .form-gilead-bottom {
    display: block;
    position: relative;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 50px auto 0;
  }
  .form-gilead .form-gilead-bottom-left img,
.form-gilead .form-gilead-bottom img {
    width: 100%;
  }
  .form-gilead .form-gilead-bottom .bottom-text {
    text-align: center;
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
  .form-gilead .user-data {
    display: block;
  }
  .form-gilead .user-data input[type=text] {
    margin-bottom: 20px !important;
  }
  .form-gilead .form-gilead-form .req {
    font-size: 16px !important;
    line-height: 20px;
  }
  .form-gilead .form-gilead-bottom-left {
    width: 90% !important;
    left: auto !important;
    bottom: 10px !important;
  }
  .form-gilead .form-gilead-top {
    width: 100%;
    right: 0;
  }
  .form-gilead #myForm2 {
    margin-top: 40px !important;
  }
  .form-gilead #myForm {
    margin-top: 60px !important;
  }
}
@media (max-width: 1200px) {
  .form-gilead {
    width: 100%;
  }
  .form-gilead .form-gilead-middle {
    min-width: 617px;
  }
  .form-gilead .form-gilead-middle p {
    max-width: 617px;
    font-size: 30px !important;
    line-height: 40px !important;
    margin-top: 30px;
  }
  .form-gilead .form-gilead-form input[type=checkbox] {
    margin-top: 0;
  }
  .form-gilead .form-gilead-form .privacy a {
    font-size: 16px;
  }
  .form-gilead .form-gilead-form .req {
    max-width: 100%;
  }
  .form-gilead #myForm2 {
    margin-top: 90px;
  }
  .form-gilead #myForm2 input[type=text] {
    margin-bottom: 0;
  }
  .form-gilead #myForm2 button {
    font-size: 14px;
    padding: 15px 0;
  }
  .form-gilead .form-gilead-bottom {
    bottom: 10px;
  }
  .form-gilead .form-gilead-bottom-left {
    width: 51%;
    left: 23px;
    bottom: 10px;
  }
  .form-gilead .form-gilead-bottom-left p {
    word-break: break-all;
  }
}
@media (max-width: 880px) {
  .form-gilead .form-gilead-middle {
    min-width: auto;
  }
  .form-gilead .form-gilead-middle p {
    max-width: 500px;
    font-size: 22px !important;
    line-height: 28px !important;
    margin-top: 30px;
  }
}

/*# sourceMappingURL=app.css.map */
