@import url('https://fonts.cdnfonts.com/css/noto-sans');
html{
    font-size: 16px;
    border-collapse: separate;
}
body {
    font-family: 'Noto Sans', sans-serif !important;
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 1em;
}

.main-container {
    position: relative;
    z-index: 2;
    min-height: 100%;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
    .main-container:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        min-height: 100%;
        width: 100vw;
        background-color: rgba(255, 255, 255, 0.85);
        transform: none;
        transform-origin: initial;
    }

.landing-content{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px;
    z-index: 3;
    box-sizing: border-box;
}

#logo{
    width: 50%;
    margin-top: 10px;
    margin-bottom: 20px;
    z-index: 2;
}

#LandingHeader{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

h1, h2{
    font-size: 2em;
    font-weight: bold;
    margin: 5px 0px;
    line-height: 32px;
}
.new-line{
    display: block;
}

#LandingHeader p{
    font-size: 0.8em;
    text-transform: uppercase;
    font-weight: 600;
    line-height: normal;
    margin: 1em 0px;
    opacity: 0.7;
}

.box-form{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /*width: 100%;*/
    flex-wrap: wrap;
    margin-top: 1.5em;
}

.form-steps{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.form-steps h4{
    font-size: 1em;
    font-weight: 600;
    opacity: 0.7;
}

.box-radio {
    position: relative;
    padding: 15px 30px;
    margin: 5px;
    font-size: 0.8em;
}
.form-check .form-check-input {
    float: left;
    margin-left: -1em;
    margin-right: 0.5em;
}

.box-radio::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 3px; /* control the border thickness */
    background: linear-gradient(45deg, #76F979, #1A472A);
    -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

#Step-4 div{
    align-self: normal;
}

#ActionButtons{
    display: flex;
    margin-top: 0.5em;

}
.btn-custom {
    background-color: #7dff29 !important; /* !important asegura que esta regla CSS se aplique incluso si Bootstrap tiene reglas CSS conflictivas */
    color: #696969;
    padding: 10px !important;
    font-size: 0.9em;
    font-weight: 600;
}

#LandingExit{
    padding-left: 2.5em;
}
#LandingExit h1{
    font-size: 2.8em;
    color: #7dff29;
    font-weight: bold;
}
#LandingExit h2{
    font-size: 1.2em;
}

.video-container{
    display: block;
    max-width: 100%;
    height: auto;
    z-index: 3;
}
.video-container video{
    width: 100vw;
    max-width: 100%;
    height: auto;
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

    .main-container {
        position: relative;
        z-index: 2;
        height: 100vh;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        flex-direction: row;
    }
    .main-container:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        width: 60vw;
        background-color: rgba(255, 255, 255, 1);
        transform: skewX(-9deg);
        transform-origin: top right;
        z-index: 3;
    }

    #logo{
        width: 70%;
        margin-top: 10px;
        margin-bottom: 20px;
        z-index: 2;
    }

    .landing-content {
        min-width: 50vw;
        padding-left: 2em;
    }

    #LandingHeader {
        padding-left: 8em;
        margin-top: 0.8em;
    }
    .box-form {
        padding-left: 7em;
        font-size: 1.1em;
    }

    h1, h2{
        font-size: 3em;
        line-height: 44px;
    }

    #LandingHeader p{
        font-size: 1em;
    }

    .video-container{
        min-width: 50vw;
        height: 100%;
        z-index: 2;
        overflow: hidden;
    }
    .video-container video {
        display: block;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;

        /* Center the video */
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: 0;
    }


    #LandingExit{
        padding-left: 3.5em;
    }
    #LandingExit h1{
        font-size: 2.5em;
        color: #7dff29;
        font-weight: bold;
    }


}

