body {
    padding-top: 60px;
}
.select2-container {
    width: 100% !important;
}
.select2-selection {
    margin-bottom: 15px;
}

.select2-container .select2-selection--single{
    height: 34px!important;
}

#w0 .has-error .form-control {
    border-width: 1px!important;
}

.spin-loader {
    -webkit-animation: spin-loader 1s infinite linear;
    animation: spin-loader 1s infinite linear;
}

.forgot-password{
    font-size: 13px;
}

.nav-for-authorization {
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(12px);
}

@media (max-width: 450px) {
    .forgot-password{
        display: block;
        font-size: 8px;
        transform: translateY(3px);
    }
    .nav-for-authorization{
        transform: translateY(5px);
    }
}

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

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