.vh-login-form {
    -webkit-box-shadow: 0px 10px 20px 18px rgba(245,245,245,0.75);
    -moz-box-shadow: 0px 10px 20px 18px rgba(245,245,245,0.75);
    box-shadow: 0px 10px 20px 18px rgba(245,245,245,0.75);
    margin: auto 0;
    width: 100%;
}

.btn-vh-login,
.btn-vh-login:hover{
    background-color: #073070;
    border-color: #073070;
}

.register-container {
    flex-wrap: wrap;
    display: flex;
    margin-bottom: 30px;
}

.register-item {
    flex-wrap: wrap;
    display: flex;
    align-content: center;
    box-shadow: 0 0 12px 0 rgba(50,50,50,.28);
    padding-bottom: 25px;
    width: 100%;
    position: relative;
    margin-bottom: 200px;

}

.headlineLine {
    padding-bottom: 15px;
    margin-bottom: 45px;
    border-bottom: 2px solid black;
    width: 100%;
    font-family: 'Asap', sans-serif;
}
@media (max-width: 380px) {
    .headlineLine {
        font-size: 30px;
    }
}


.formBtn{
    display: block;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    border-radius: 4px;
    min-height: 46px;
    padding: 11px 20px;
    position: relative;
    overflow: hidden;
    background: #006ebb;
    transition: all .3s;
    box-shadow: 6px 6px 0 -2px #d2d2d2;
    border: 0;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}

.formBtn--white{
    display: block;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: #3b3b3b;
    border-radius: 4px;
    min-height: 46px;
    padding: 11px 20px;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    transition: all .3s;
    box-shadow: 6px 6px 0 -2px #d2d2d2;
    border: 0;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}

.formBtn--white:hover{
    box-shadow: none;
    background-color: #006ebb;
    color: #fff;
}

.formBtn:focus{
    box-shadow: none;
    background: #005FA2;
    text-decoration: none;
}
.formBtn:hover{
    box-shadow: none;
    text-decoration: none;
    color: #fff;

}

.montserrat{
    font-family: 'Montserrat', sans-serif;
}

.asap{
    font-family: 'Asap', sans-serif;
}
footer > .container {
    position: relative;
    margin-left: auto;
    width: 100%;
    margin-right: auto;
    padding-right: 60px;
    padding-left: 60px;
    max-width: 100%;
}
.h1.small, .h2.small, .h3.small, .h4.small, .h5.small, .h6.small, h1.small, h2.small, h3.small, h4.small, h5.small, h6.small {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.naviAdd {
    margin: 0 0 40px;
    list-style-type: none;
    padding: 0 0 0px;
}

.footerlinetext {
    color: #3b3b3b;
    font-size: 17px;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}
footer {
    background: #f5f5f5;

}
.footerline{
    margin-bottom: 15px;
    margin-right: 10px;
}
.last{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;

}

footer .container{
    background-color: #f5f5f5;
}


@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {

    #app{
        min-height: 1600px;
    }

}

.loader {
    margin: auto;
    display: none;
    border: 6px solid #f3f3f3; /* Light grey */
    border-top: 6px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}








