/**
    Typography
    ==========
*/
body {
    font-family: 'Open Sans', sans-serif;
    background: #F7F7F7;
}

/**
    Helpers
    =======
*/
.is-relative {
    position: relative;
}

.full-width {
    width: 100%;
}

.mt15 {
    margin-top: 15px !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

/**
    Login
    =====
*/
.login-container {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    background: #FFF;
    box-shadow: 0 7px 14px 0 rgba(50,50,93,.1), 0 3px 6px 0 rgba(0,0,0,.07);
    padding: 20px 15px;
}
.mfa-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mfa-setup-info {
    text-align: center;
    margin-bottom: 15px;
}

.login-heading {
    text-align: center;
    font-size: 22px;
    margin: 0 0 15px 0;
}

.blank .logo {
    text-align: center;
    background: #2A3F54;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 15px 0;
    margin-top: 70px;
}

.blank .logo img {
    max-width: 80%;
}

.forgot-credentials a {
    color: #2A3F54;
}

.btn-primary {
    border-radius: 0;
    background: #2A3F54;
    border: none;
    box-shadow: 0 7px 14px 0 rgba(50, 50, 93, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.07);
    font-weight: 600;
}

.btn-primary:hover,
.btn-primary.focus, .btn-primary:focus {
    background: #35495D;
}

.btn.processing {
    color: transparent !important;
    position: relative;
}

.btn.processing:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    margin: -10px;
    border-radius: 50%;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-bottom: 2px solid rgba(255,255,255,0.9);
    border-right: 2px solid rgba(255,255,255,0.9);
    -webkit-animation: rotate 0.8s linear infinite;
    -moz-animation: rotate 0.8s linear infinite;
    -ms-animation: rotate 0.8s linear infinite;
    -o-animation: rotate 0.8s linear infinite;
    animation: rotate 0.8s linear infinite;
}

.btn.processing-dark {
    color: transparent !important;
    position: relative;
}

.btn.processing-dark:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    margin: -10px;
    border-radius: 50%;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-bottom: 2px solid rgba(0,0,0,0.8);
    border-right: 2px solid rgba(0,0,0,0.8);
    -webkit-animation: rotate 0.8s linear infinite;
    -moz-animation: rotate 0.8s linear infinite;
    -ms-animation: rotate 0.8s linear infinite;
    -o-animation: rotate 0.8s linear infinite;
    animation: rotate 0.8s linear infinite;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
  }
  to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
  }
}

/**
    Password Reset
    ==============
*/
.login-link {
    margin-top: 10px;
}

.login-link a {
    color: #2A3F54;
}

.cookieConsentContainer{
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin-bottom: 0px;
    z-index: 9999999;
    text-align: center;
}

.js-cookie-consent-agree.cookie-consent__agree {
    background-color: #008CBA;
    border: none;
    color: white;
    padding: 9px 21px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 19px;
}
