@font-face{
    font-family: 'BMWTypeNextTT';
    src: url('https://s3.amazonaws.com/themes.limelightplatform.com/web/drive-bmw/fonts/BMWTypeNextTT-Bold.ttf');
    font-weight: 700;
}

@font-face{
    font-family: 'BMWTypeNextTT';
    src: url('https://s3.amazonaws.com/themes.limelightplatform.com/web/drive-bmw/fonts/BMWTypeNextTT-Light.ttf');
    font-weight: 200;
}

@font-face{
    font-family: 'BMWTypeNextTT';
    src: url('https://s3.amazonaws.com/themes.limelightplatform.com/web/drive-bmw/fonts/BMWTypeNextTT-Regular.ttf');
    font-weight: normal;
}

@font-face{
    font-family: 'BMWTypeNextTT';
    src: url('https://s3.amazonaws.com/themes.limelightplatform.com/web/drive-bmw/fonts/BMWTypeNextTT-Thin.ttf');
    font-weight: 100;
}

*{
    font-family: 'BMWTypeNextTT' !important;
}

#logo{
    max-width:200px;
    max-height: 200px;
}

h3{
    font-size: 22px;
    margin-bottom: 10px;
    margin-top: 16px;
}
    
h5{
    font-size: 18px;
}

#email{
    height: 40px;
    width: 289px;
    border-radius: 1px;
    background-color: #F4F5F6;
    border-style: none;
    padding-left: 5px;
    font-size: 17px;
}

#email:focus{
    height: 40px;
    width: 289px;
    border-radius: 1px;
    background-color: #D8DCE0;
}

#submitButton{
    height: 40px;
    width: 289px;
    font-size: 17px;
    border: 1px solid #D8DCE0;
    border-radius: 4px;
    background-color: #FFFFFF;
    color: #D8DCE0;
}

#submitButton:enabled{
    background-color: #000000;
    color: #FFFFFF;
}

.result-label{
    color: #000000;
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px!important;
}

#loading-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
#loading-text {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    color: #122136;
    width: 100px;
    height: 30px;
    margin: -16px 0 0 -45px;
    text-align: center;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 20px;
}
#loading-content {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 170px;
    height: 170px;
    margin: -85px 0 0 -85px;
    border: 3px solid #F00;
}
#loading-content {
    border: 3px solid transparent;
    border-top-color: #D8DCE0;
    border-bottom-color: #D8DCE0;
    border-radius: 50%;
    -webkit-animation: loader 2s linear infinite;
    -moz-animation: loader 2s linear infinite;
    -o-animation: loader 2s linear infinite;
    animation: loader 2s linear infinite;
}

#notFoundBlock{
    margin-top: 16px!important;
    display: inline-flex;
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}