* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

p {
    margin: 0;
}

@font-face {
    font-family: 'GothamMedium';
    src: url('../fonts/gotham-medium-webfont.eot');
    src: url('../fonts/gotham-medium-webfont.eot?#iefix') format('embedded-opentype'),
        url('../fonts/gotham-medium-webfont.woff2') format('woff2'),
        url('../fonts/gotham-medium-webfont.woff') format('woff'),
        url('../fonts/gotham-medium-webfont.ttf') format('truetype'),
        url('../fonts/gotham-medium-webfont.svg#gothammedium') format('svg');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'GothamBlack';
    src: url('../fonts/Gotham-Black.otf');
    font-weight: 900;
    font-style: normal;
}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
}

body {
    background-image: url("../imgs/fondo.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    font-family: "GothamMedium";
    font-weight: 500;
    font-size: 18px;
    color: #000000;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.formulario {
    margin: 0 auto;
    display: block;
}

.formulario label {
    margin-left: 10px;
}

.formulario input[type="text"],
.formulario input[type="number"],
.formulario input[type="email"] {
    margin: 0 auto;
    border: 1px solid #E00713;
    font-family: "GothamMedium";
    font-weight: 500;
    font-size: 18px;
    color: #000000;
}

.contenedor-sello-garantia {
    border: 1px solid #E00713;
    background: #FFFFFF;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 9px;
}

.contenedor-sello-garantia img {
    height: 70px; 
    margin-right: 15px;
}

.contenedor-sello-garantia span {
    font-size: 12px;
    color: #000000;
}

.formulario select {
    margin: 0 auto;
    border: 1px solid #E00713;
    font-family: "GothamMedium";
    font-weight: 500;
    font-size: 16px;
    color: gray;
}

::placeholder,
.form-control::placeholder {
    font-family: "GothamMedium";
    font-weight: 500;
    font-size: 18px;
    color: gray;
}

h4 {
    color: #000000;
    font-family: "GothamBlack";
    font-weight: 900;
    font-size: 30px;
    font-style: normal;
    margin-bottom: 0;
    line-height: normal;
}

h5 {
    color: #000000;
    font-family: "GothamMedium";
    font-weight: 500;
    font-size: 30px;
    font-style: normal;
    margin-bottom: 0;
    line-height: normal;
}

.form-check {
    margin: 0 auto;
}

.form-check-label,
.form-check-label a {
    font-family: "GothamMedium";
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    margin-left: 0 !important;
}

.form-check-label a {
    text-decoration: underline;
}
.form-check-label a span{
    text-decoration: underline;
    font-family: "GothamBlack";
    font-weight: 900;
}

.form-check .form-check-input {
    float: right;
    margin-left: 0;
}

.form-check-input {
    border: 1px solid #E00713;
    width: 40px;
    height: 30px;
}

.form-check-input:checked {
    background-color: #E00713;
    border: 1px solid #E00713;
}

input[type="submit"] {
    border: 1px solid #E00713;
    background: #E00713;
    border-radius: 20px;
    font-family: "GothamMedium";
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: #FFFFFF;
    transition: all 1s ease;
    margin: 0 auto;
}

input[type="submit"]:hover {
    background: #FFFFFF;
    color: #E00713;
}

.g-recaptcha {
    transform: scale(1);
    width: 300px;
    margin: 0 auto;
}

.modal-dialog {
    max-width: 800px;
}

.modal-body {
    width: 90%;
    margin: 0 auto;
}

.modal-content {
    background-image: url("../imgs/fondo.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.modal h5 {
    font-family: "GothamBlack";
    font-weight: 900;
    font-size: 40px;
    color: #000000;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
}

.modal p#modalCupon {
    font-family: "GothamMedium";
    font-weight: 500;
    font-size: 30px;
    color: #E00713;
    margin-bottom: 10px;
    text-align: center;
}

.modal p#modalMensaje {
    font-family: "GothamMedium";
    font-weight: 500;
    font-size: 20px;
    color: #000000;
    text-align: center;
}

.modal #modalPremio {
    display: none;
}

.modal .btn-close-modal {
    font-size: 30px;
    color: #000000;
}