:root {
    --vp-blue: #245baa;
    --mdc-theme-primary: #245baa !important;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-floating-label {
    color: #245baa !important;
}

body, input, button {
    font-family: 'Maven Pro', sans-serif !important;
}

.mdc-floating-label, .mdc-text-field__input, .mdc-button {
    font-family: 'Maven Pro', sans-serif;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    background-image: url(../images/vircom-background.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

@media (min-width: 1440px) {
    body {
        background-image: url(../images/vircom-background_2x.png);
    }
}

img.banner-logo {
    max-height: 48px;
}

img.auth-small-logo {
    max-width: 160px;
}

.input-icons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 0.8rem;
    position: relative;
    background: #F8F8F8;
    color: #000;
    font-size: 18px;
}

    .input-icons:disabled {
        background-color: #e9ecef !important;
    }

.icon {
    position: absolute;
    right: 10px;
    color: #000;
    width: 1.28571429em;
    text-align: center;
}

.input-field.input-outlined > input {
    border: 2px solid #eee;
    padding-left: 16px;
    float: none;
    display: block;
    border-radius: 8px;
    transition: box-shadow 0.15s, border-color 0.15s;
}

    .input-field.input-outlined > input:focus:not([readonly]) {
        border-color: #26A69B;
        box-shadow: 0 1px 0 0px #26A69B;
    }

.input-field.input-outlined > label {
    left: 16px;
    display: inline-flex;
    width: auto !important;
}

    .input-field.input-outlined > label.active {
        background: white;
        border-left: 4px solid white;
        border-right: 4px solid white;
        transform: translateY(-1.75rem);
        top: 1rem;
    }

/*
.input-field {
    width: calc(100% - 50px);
    padding: 0.6rem;
    text-align: left;
    box-sizing: border-box;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    background: #F8F8F8 !important;
}*/

.vp-text-blue {
    color: var(--vp-blue) !important;
}

.vp-btn-primary {
    padding: 10px;
    border-radius: 4px !important;
    background: var(--vp-blue) !important;
    border: none !important;
    box-shadow: none !important;
    outline: none;
    transition: all 0.2s ease-out;
}

.vp-btn-primary:hover {
    outline: none !important;
    background: #022E56 !important;
}

.vp-btn-secondary {
    padding: 10px;
    border-radius: 4px !important;
    background: #D9D9D9 !important;
    outline: none;
    border: none !important;
    box-shadow: none !important;
    width: 100%;
    color: #000;
    font-size: 14px;
    transition: all 0.2s ease-out;
}

    .vp-btn-secondary:hover {
        outline: none !important;
        background: #B0AFAF;
        color: #000;
    }

.divider {
    font-size: 14px;
    display: flex;
    align-items: center;
}

    .divider::before, .divider::after {
        flex: 1;
        content: '';
        padding: 0.4px;
        background-color: #DFE2E6;
    }
    .divider::before {
        margin-right: 20px;
    }
    .divider::after {
        margin-left: 20px;
    }

.vp-icon-microsoft {
    background: url(~/images/microsoft_icon.svg);
    height: 20px;
    width: 20px;
    display: inline-block;
}

.text-primary {
    color: var(--vp-blue) !important;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef !important;
    opacity: 1;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none !important;
}

.hide-scrollbar {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

.footer-copyright  {
    font-size: 11px !important;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.border-radius-32 {
    border-radius: 32px;
}

.vp-background-blue {
    background-color: var(--vp-blue) !important;
}

.vp-border-blue {
    border-color: var(--vp-blue) !important;
}

.card-container {
    padding: 4px 40px;
}

@media (min-width: 768px) {
    .card-container {
        padding: 4px 50px;
    }
}

@media (min-width: 1200px) {
    .card-container {
        padding: 4px 80px;
    }
}

.border-radius-8 {
    border-radius: 50px !important;
}

.font-weight-bold {
    font-weight: bold !important;
}