@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
    font-weight: 400;
}
@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-Light.ttf") format("truetype");
    font-weight: 100;
}
@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
    font-weight: 300;
}
@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
    font-weight: 500;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #c7c7c7;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

body img, html img {
    width: 100%;
}

#header {
    background-image: url(../img/gradient.png);
    background-size: contain;
    background-position-y: bottom;
    background-repeat: no-repeat;
    background-color: black;
    padding: 10px 0;
    width: 100%;
}

#header .logo {
    max-width: 300px;
    margin: 0 auto;
}

#header .logo img {
    height: 50px;
}

.backmio {
    background-color: #093459;
    color: #fff;
    padding: 10px;
    border-radius: 50px;
    width: clamp(300px, 90vw, 850px);
    height: max-content;
    margin: 0 auto;
}

.backmio .bundle-included {
    display: flex;
    align-items: center;
    max-width: 90%;
    margin: 0 auto;
}

.backmio .bundle-included .title-included {
    width: 30%;
    background-color: #58a11c;
    font-size: 0.8rem;
}

@media (max-width: 700px) {
    .backmio .bundle-included .title-included {
        width: auto;
        padding: 0 10px;
    }
}

.backmio .bundle-included .text-bundle-included {
    font-size: 0.8rem;
    margin-left: 20px;
}

.backmio .bundle-included .text-bundle-included .form-check {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.backmio .bundle-included .text-bundle-included .form-check svg {
    fill: #58a11c;
    height: 20px;
}

.backmio .bundle-included .text-bundle-included .form-check p {
    text-align: justify;
    margin: 0 0 0 10px;
}

@media (max-width: 700px) {
    .backmio .bundle-included .text-bundle-included {
        margin-left: 0px;
    }
}

@media (max-width: 700px) {
    .backmio .bundle-included {
        flex-direction: column;
        margin: 15px auto;
    }
}

#content {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

#content .title {
    text-transform: uppercase;
    font-weight: bolder;
    font-size: 24px;
}

#content form#signupform {
    overflow: hidden;
}

#content form#signupform .membership {
    background-color: #000;
    border-radius: 5px;
    color: #fff;
    padding: 10px;
    position: relative;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

#content form#signupform .membership .form-check {
    font-weight: lighter;
    font-size: 12px;
    color: #c3c3c3;
    max-width: 90%;
    margin: 0 auto;
}

#content form#signupform .membership .title {
    color: #b7b7b7;
    font-weight: 100;
    font-size: 14px;
}

#content form#signupform .membership .data {
    font-weight: bolder;
    text-transform: uppercase;
    font-size: 22px;
    line-height: 1;
    margin: 10px;
}

#content form#signupform .warning {
    color: #dc0000;
    margin-bottom: -8px;
    text-align: right;
    padding: 0px 10px;
    font-size: 14px;
}

#content form#signupform .warning i {
    background: transparent url(../img/icon-warning.png) no-repeat center center;
    height: 13px;
    width: 13px;
    display: inline-block;
    line-height: 1;
    margin-left: 5px;
    background-size: 100%;
}

#content form#signupform .detailsxsell #xsell {
    background-color: #8e8e8e;
    color: #FFF;
    font-weight: 100;
    text-transform: uppercase;
    margin: 20px 0px;
    padding: 10px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    max-width: 500px;
}

@media (max-width: 700px) {
    #content form#signupform .detailsxsell #xsell {
        width: 300px;
    }
}

#content form#signupform .form-group {
    margin: 10px auto;
    display: flex;
    align-items: center;
    position: relative;
    max-width: 620px;
}

#content form#signupform .form-group #xsellLabel {
    display: inline !important;
    width: 20px;
}

@media (min-width: 767px) {
    #content form#signupform .form-group #xsellLabel {
        width: 120px;
    }
}

#content form#signupform .form-group label {
    text-transform: uppercase;
    white-space: nowrap;
    position: absolute;
    color: #757575;
    top: 0;
    margin-left: 5px;
    font-size: 0.7rem;
}

#content form#signupform .form-group label a {
    color: #000;
}

#content form#signupform .form-group input {
    padding: 15px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    border-radius: 5px;
    border: none;
}

#content form#signupform .form-group select {
    width: 50%;
    background-color: #ffffff;
    font-size: 16px;
    padding: 10px;
    height: 39px;
    font-weight: 400;
    border-radius: 5px;
    border: none;
}

#content form#signupform .form-group .valid {
    padding-left: 30px;
    background-image: url(../img/circle-check-solid.svg);
    background-size: 24px 29px;
    background-repeat: no-repeat;
    background-position: 97% 0.6rem;
}

#content form#signupform .form-group .invalid {
    padding-left: 30px;
    background-image: url(../img/circle-xmark-solid.svg);
    background-size: 24px 29px;
    background-repeat: no-repeat;
    background-position: 97% 0.6rem;
}

#content form#signupform .date {
    gap: 10px;
}

#content form#signupform .date .fecha1 {
    color: #000;
    font-family: 'Montserrat', sans-serif;
}

#content form#signupform .date .fecha2 {
    font-family: 'Montserrat', sans-serif;
    color: #000;
}

#content form#signupform #card-numb {
    position: relative;
}

#content form#signupform #card-numb #cc {
    padding-left: 125px;
}

#content form#signupform #card-numb .image-set {
    position: absolute;
    top: 9px;
    width: 110px;
    height: 39px;
    display: flex;
}

#content form#signupform #card-numb .image-set img {
    width: 50px;
    height: 30px;
    margin: 0 5px;
}

#content form#signupform #marketing-group {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    text-transform: initial;
    max-width: 500px;
    margin: 0 auto;
}

#content form#signupform button {
    max-width: 500px;
    align-items: center;
    color: #fff;
    justify-content: center;
    background-color: #58a11c;
    border: none;
    border-radius: 10px;
    padding: 10px 10px;
    margin: 10px auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    font-size: 2rem;
}

#content form#signupform button img {
    max-width: 30px;
    margin-left: 20px;
}

@media (max-width: 700px) {
    #content form#signupform button {
        padding: 5px 10px;
        margin-bottom: 20px;
        max-width: 250px;
    }
}

#footer {
    max-width: 620px;
    margin: 20px 10px;
    text-align: center;
    font-size: 12px;
    color: #393939;
    font-weight: 100;
}

#footer ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

#footer ul li {
    border-right: 1px solid #8F8F8F;
    width: 100%;
    font-weight: 400;
    text-transform: uppercase;
}

#footer ul li:last-child {
    border: none;
}

#footer ul li a {
    text-decoration: none;
    color: #000;
}

#footer p {
    font-weight: 400;
}

#footer img {
    max-width: 90px;
    margin: 20px;
}
