#header {
    height: 100vh;
    max-height: 785px;
    background: url('../assets/banner-desktop.webp') no-repeat center;
    background-size: cover;
    position: relative;
}


.header__logo img {
    display: block;
    height: auto;
    max-width: 426px;
    width: 60.9%;

}

#header .group-button {
    display: flex;
    gap: 10px
}

#header .btn {
    display: table;
    margin: 0;
    padding: 10px 15px;
    font-size: 1.500rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    min-width: 185px;
    text-align: center;
    border-radius: 12px;
}

.header__container {
    max-width: 1440px;
    height: 100%;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.header__container .column-1 {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;

}

.header__text {
    margin-top: 2%;
    margin-bottom: 5%;
    color: #ffffff;
    font-size: 1.875rem;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: -0.02em;
}



.header__container .column-2 {
    max-width: 480px;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;

}

.box-form {
    height: 90%;
    background: #f9f8fa;
    display: flex;
    flex-direction: column;
    border-radius: 17px;
    overflow: hidden;
}

.box-form__title {
    background-color: #53d243;
    text-align: center;
    padding: 3.6% 0 10px;
    font-size: 1.500rem;

}

.box-form__h2 {
    font-size: inherit;
    font-weight: 700;
    color: #202020;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.box-form__iframe {
    flex-grow: 1;
}

.box-form__iframe iframe {
    height: 100%;
    width: 100%;
}

.box-form__date {
    display: inline-block;
    margin-top: 1%;
    background: #252525;
    padding: 5px 25px;
    border-radius: 8px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.9;
}

.text-muted {
    font-size: 0.625rem;
    color: #231f20;
    padding: 10px 18px 5px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

@media (max-width: 1500px) {
    #header {
        background: url('../assets/banner-laptop.webp') no-repeat center;
        background-size: cover;
        max-height: 644px;
    }

    .header__container {
        max-width: 80vw;
    }

    .header__container .column-2 {
        max-width: 320px;
    }

    .box-form__title {
        font-size: 1rem;
        padding: 3% 0 10px;
    }

    .text-muted {
        padding: 5px 15px 0px;
        font-size: 0.46875rem;
    }

    .header__text {
        font-size: 1.5rem;
    }

    #header .btn {
        font-size: 1.375rem;
        min-width: 170px;
    }

    .box-form {
        height: 92.5%;
    }
}


.desktop-only {
    display: inline;
}

.mobile-only {
    display: none;
}

@media (max-width: 767px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: inline !important;
    }

    #header {
        height: auto;
        max-height: unset;
        background: none;
    }

    #header .banner-mobile {
        padding: 7vw 8vw 18vw;
        background: url('../assets/banner-mobile.webp') no-repeat;
        background-size: cover;
    }

    .header__container {
        max-width: 100%;
        width: 100%;
        height: auto;
        padding: 0;
        flex-direction: column;
    }

    .header__container .column-1 {
        width: 100%;
        height: auto;
    }

    .header__logo img {
        max-width: 350px;
        width: 43vw;
    }

    .header__text {
        font-size: 2.999vw;
    }

    #header .btn {
        font-size: 2.608vw;
        min-width: 90px;
        padding: 7px 12px;
        border-radius: 0.8em;
    }

    .header__container .column-2 {
        height: auto;
        margin-left: auto;
        margin-right: auto;
        margin-top: -13vw;
    }

    .text-muted {
        font-size: 0.563rem;
        line-height: 1.2;
    }

    .box-form__iframe {
        height: 85vh;
        max-height: 700px;
    }

    .signup-intro {
        margin-top: 23vw;
    }

    
}