body {
    background: #0e1018;
    padding: 0;
    margin: 0;
}

.logo {
    max-width: 170px;
    margin: auto;
    margin-bottom: 15px;
}

.middle-layer {
    display: flex;
    width: 100%;
    justify-content: center;
    height: 100vh;
    align-items: center;
    background: transparent;
}

.middle-layer img {
    width: 100%;
}

.form-group {
    width: 460px;
    border-radius: 50px;
    background-color: #00000073;
    margin: auto;
    padding: 8px 8px 8px 26px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #fff;
    min-height: 45px;
}

.ml-button-horizontal button {
    background-color: #ff0000;
    color: #ffffff;
    border: 0;
    outline: 0;
    border-radius: 50px;
    cursor: pointer;
    padding: 13px 16px;
    font-size: 14px;
    font-weight: 800;
    min-width: 120px;
}

.ml-form-successContent > p {
    font-size: 12px !important;
    color: #289922 !important;
    text-align: center !important;
    font-family: sans-serif;
}

#mlb2-16027975.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
    padding: 8px 6px 9px 6px !important;
}

#mlb2-16027975.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
    margin: 0 !important;
}

.ml-form-successContent > h4 {
    display: none !important;
}

#mlb2-16027975.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {
    min-width: 78.11px !important;
    padding: 4px 12px !important;
    margin-top: 1px !important;
}

.ml-form-embedSubmitLoad {
    width: 15px !important;
    height: 15px !important;
}

.ml-form-embedSubmitLoad:after {
    width: 6px !important;
    height: 6px !important;
}

.ml-form-embedContainer, .ml-form-align-center {
    width: 100%;
}

.ml-form-horizontalRow {
    display: flex;
    justify-content: space-between;
}

input.form-control {
    width: 315px;
    height: 41px;
    border: none;
    outline: none;
    border-radius: 50px;
    background: transparent;
    color: white;
    font-weight: 800;
    font-size: 14px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus {
    border: none;
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
}

p.tagline {
    color: #fff;
    text-align: center;
    font-size: 23px;
    font-family: sans-serif;
    font-weight: 700;
    margin: 8px 0 20px 0;
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

video {
    width: 100%;
    object-fit: cover;
    height: 100dvh;
}

@media only screen and (max-width: 500px) {

    .form-group {
        width: 280px;
        padding: 5px 5px 5px 15px;
    }
    
    input.form-control {
        width: 182px;
        font-size: 13px;
    }

    .ml-button-horizontal button {
        padding: 15px 10px;
        font-size: 12px;
        min-width: unset;
        font-weight: 600;
    }

}