body {
    background: url("https://nxmcdn.com/images/gls/webinar/webinar_bg_filtered.webp") center right / cover no-repeat black;
}

* {
    font-family: var(--primary-font);
    font-style: normal;
}

.ohnohoney {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.hiddenRecaptcha {
    width: 0;
    height: 0;
    border: 0;
}

h1 {
    color: #FFF;
    text-align: right;
    font-size: 45px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

p {
    color: #FFF;
    text-align: right;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    width: 476px;
}

#myVideo {
    width: 100%;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.pause-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

video:hover+.pause-overlay,
.pause-overlay:hover {
    opacity: 1;
}

.pause-overlay svg {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.pause-overlay:hover svg {
    opacity: 1;
}

.form-control {
    color: #000;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;

    border-radius: 0;
    outline: 0;
    box-shadow: none !important;
}

.btn-custom-primary {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.18px;

    display: inline-flex;
    padding: 17px 58px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: var(--primary-color);
}

.btn-custom-primary:hover,
.btn-custom-primary:focus,
.btn-custom-primary:active {
    color: #FFF !important;
    background: var(--primary-color) !important;
}

.btn-close {
    font-size: 14px;
}

#hero-image {
    background: url("https://nxmcdn.com/images/gls/webinar/modal-hero.webp") center / cover no-repeat;
}

#signupform {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#signupform input {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #ccc;

    color: #000;
    font-family: var(--primary-font);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 0;
}

label.error {
    padding: 0;
    color: red;
    font-size: 12px;
    padding-top: 5px;
}


@media screen and (min-width: 767.99px) and (max-width: 1199.98px) {
    body {
        background: url("https://nxmcdn.com/images/gls/webinar/webinar_bg_filtered-tablet.webp") center right / cover no-repeat black;
    }
}

@media screen and (max-width: 767.98px) {
    body {
        background: url("https://nxmcdn.com/images/gls/webinar/webinar_bg_filtered-mobile.webp") center right / cover no-repeat black;
    }

    h1 {
        text-align: center;
        font-size: 30px;
    }

    p {
        text-align: center;
        font-size: 16px;
        width: 100%;
    }

    .custom-width {
        max-width: 232px;
        white-space: nowrap;
        margin: auto;
    }

}

@media screen and (max-width: 768px) {
    .modal-dialog {
        max-width: 700px;
    }
}