@font-face {
    font-family: 'Open Sans';
    src: url('../style/fonts/Open_Sans/OpenSans-Regular.ttf') format('truetype'),
    url('../style/fonts/Open_Sans/OpenSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open SansBold';
    src: url('../style/fonts/Open_Sans/OpenSans-Bold.ttf') format('truetype'),
    url('../style/fonts/Open_Sans/OpenSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Open SansSemiBold';
    src: url('../style/fonts/Open_Sans/OpenSans-SemiBold.ttf') format('truetype'),
    url('../style/fonts/Open_Sans/OpenSans-SemiBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Open SansLight';
    src: url('../style/fonts/Open_Sans/OpenSans-Light.ttf') format('truetype'),
    url('../style/fonts/Open_Sans/OpenSans-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open SansItalic';
    src: url('../style/fonts/Open_Sans/OpenSans-Italic.ttf') format('truetype'),
    url('../style/fonts/Open_Sans/OpenSans-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Open SansBoldItalic';
    src: url('../style/fonts/Open_Sans/OpenSans-BoldItalic.ttf') format('truetype'),
    url('../style/fonts/Open_Sans/OpenSans-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
}

/* INTER */
@font-face {
    font-family: 'Inter';
    src: url('../style/fonts/inter/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter Bold';
    src: url('../style/fonts/inter/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Inter SemiBold';
    src: url('../style/fonts/inter/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Inter Light';
    src: url('../style/fonts/inter/Inter-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Inter Thin';
    src: url('../style/fonts/inter/Inter-Thin.ttf') format('truetype');
    font-style: normal;
}

/*
    We use Material Icon Round for all browsers but IE11. This is due to the fact that Google no longer provides
    alternatives to the woff2 format, which is not supported by IE11. As a fallback we use an older version of the
    regular material icons.
 */
@font-face {
    font-family: 'Material Icons Round';
    font-style: normal;
    font-weight: 400;
    src: local('Material Icons Round'),
    url('../style/fonts/MaterialIcons/Material-Icons-Complete-Rounded.woff2') format('woff2'),
    url('../style/fonts/MaterialIcons/MaterialIcons-Regular.woff') format('woff');
}

@font-face {
    font-family: 'FontAwesome';
    src: url('../style/fonts/FontAwesome/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'),
    url('../style/fonts/FontAwesome/fontawesome-webfont.woff?v=4.6.3') format('woff'),
    url('../style/fonts/FontAwesome/fontawesome-webfont.ttf?v=4.6.3') format('truetype'),
    url('../style/fonts/FontAwesome/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

:focus, input:focus, button:focus, a:focus {
    outline: 2px solid #004A80;
    outline-offset: 4px;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-google:before {
    content: "\f1a0";
}

.material-icons, .custom-checkbox:before {
    font-family: 'Material Icons Round';
    font-weight: normal;
    font-style: normal;
    font-size: 24px; /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;

    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;

    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;

    /* Support for IE. */
    font-feature-settings: 'liga';
}

.login-background-clean {
    background-image: none;
    background-color: #222222;
}

.material-icons--inline-text {
    font-size: 13px;
}

.nowrap {
    white-space: nowrap;
}

body {
    margin: 0;
}

body, input, select {
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 18px;
    color: #222;
}

a {
    cursor: pointer;
}

h1, h2, h3, h4 {
    font-family: "Inter SemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1 {
    font-size: 26px;
}

h1.login {
    font-size: 15px;
}

h2 {
    font-size: 18px;
}

form {
    margin-top: 24px;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 32px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mt-05 {
    margin-top: 4px;
}

.ml-05, .rf-button.ml-05 {
    margin-left: 4px;
}


.pt-1 {
    padding-top: 8px;
}

.pt-2 {
    padding-top: 16px;
}

.bluelink {
    color: #0071ce;
    cursor: pointer;
    text-decoration: none;
}

.body-link {
    text-decoration: underline;
    font-size: 13px;
    color: #222;
}

.body-link.gray {
    color: #767676;
}

.center {
    text-align: center;
}

.rf-link-discreet, .rf-link-discreet:hover, .rf-link-discreet:active {
    color: #767676;
    text-decoration: none;
}

.rf-panel {
    float: left;
    width: 100%;
    height: 100%;
    display: flex;
    overflow-y: scroll;
}

.rf-login {
    width: 350px;
    min-height: 536px;
    margin: auto;
    background-color: white;
}

.rf-bodylogo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
}

.rf-login-input::placeholder {
    color: #767676;
}

.rf-login-input {
    padding: 8px 8px;
    border: solid 1px #767676;
    height: auto;
    width: 100%;
    margin-bottom: 8px;
    font-size: 13px;
    outline: none;
    transition: border linear .2s;
}

.rf-login-input.disabled {
    background-color: #f5f5f5;
    border-color: #cccccc;
    color: #555555;
}

.rf-login-input.no-margin {
    margin-bottom: 0;
}

.rf-login__button-wrap {
    text-align: right;
}

.rf-login-email-text {
    padding-top: 10px;
    margin-bottom: 0;
    overflow-x: scroll;
    white-space: nowrap;
}

.rf-marketing-panel {
    float: left;
    display: none;
    width: 50%;
    height: 100%;
}

.rf-marketing {
    margin: auto;
}

.rf-marketing :hover {
    cursor: pointer;
}

@media (min-width: 1250px) {
    .rf-panel {
        width: 50%;
    }
    .rf-marketing-panel {
        display: flex;
    }
}

.rf-sso__button-wrap {
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.rf-button {
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #0071ce;
    color: white;
    cursor: pointer;
    padding: 8px 32px;
    margin: 0;
    font-size: 15px;
    border: 0 none;
    outline: none;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.capitalize, .rf-button.capitalize {
    text-transform: capitalize;
}

.rf-button-cancel {
    background-color: #FFF;
    color: #222;
    border: 1px solid #767676;
}

.rf-button:disabled {
    opacity: 0.5;
}

.rf-button-sso {
    display: block;
    margin-bottom: 16px;
    position: relative;
    padding-left: 42px;
}

.rf-button-google {
    display: block;
    margin-bottom: 16px;
    position: relative;
    padding-left: 42px;
}

.rf-button-sso__icon {
    font-size: 16px;
    position: absolute;
    top: 4px;
    left: 4px;
    width: 18px;
    padding: 5px 8px;
}

.rf-button-google__icon {
    background-color: #003087;
    font-size: 24px;
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    padding: 5px 8px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.rf-button.full-width {
    width: 100%;
}

.rf-link {
    color: #0071ce;
    text-decoration: none;
}

.divider {
    position: relative;
    height: 1px;
    border-bottom: 1px solid #767676;
    margin: 24px 0 24px 0;
}

.divider-label {
    color: #767676;
    position: absolute;
    display: block;
    background-color: white;
    padding: 0 16px;
    top: -8px;
    left: 150px;
}

.rf-forgot-wrap {
    text-align: center;
}

.rf-text {
    padding-top: 24px;
    color: #767676;
}

.lh-150 {
    line-height: 150%;
}

.message {
    padding: 8px;
    border: 1px solid #CC0000;
    margin-bottom: 16px;
}

.message, .info-message {
    margin-top: 28px;
    border-radius: 1px;
    transition: all .3s ease-in-out;
    text-align: center;
}

.message-error, .info-message.error {
    color: #880000;
    background-color: #FFEBE8;
    border-color: #CC0000;
}

.message-success, .info-message.success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #468847;
}

.mfa-code {
    font-size: 26px;
    text-align: center;
    padding: 16px 16px;
    border: solid 1px #cccccc;
    height: auto;
    width: 100%;
    transition: border linear .2s;
    margin-bottom: 16px;
}

.mfa-code::placeholder {
    color: #767676;
}

.rf-login-actions {
    margin-top: 8px;
    text-align: right;
}

.mfa-setup-wrap {
    text-align: center;
    background: #f7f7f7;
    padding: 16px;
    margin-bottom: 30px;
}

.mfa-setup-code {
    font-size: 14px;
    margin-bottom: 8px;
    padding-bottom: 8px;
}

.hidden {
    display: none;
}

.bar {
    width: 0;
    transition: 2s;
}

.progress, .bar {
    height: 18px;
}

.progress {
    position: static;
    margin: 0 0 40px 0;
    width: 100%;
    background-color: #f7f7f7;
}

.progress-danger .bar,
.progress .bar-danger {
    background-color: #dd514c;
    background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
    background-repeat: repeat-x;
}

.progress-warning .bar,
.progress .bar-warning {
    background-color: #faa732;
    background-image: linear-gradient(to bottom, #fbb450, #f89406);
    background-repeat: repeat-x;
}

.progress-success .bar,
.progress .bar-success {
    background-color: #5eb95e;
    background-image: linear-gradient(to bottom, #62c462, #57a957);
    background-repeat: repeat-x;
}

.checkbox-wrapper {
    margin-bottom: 16px;
    display: flex;
    position: relative;
}

.rf-checkbox {
    opacity: 0;
}

.rf-checkbox, .custom-checkbox {
    cursor: pointer;
}

.custom-checkbox:before {
    font-size: 16px;
    color: #767676;
    position: absolute;
    left: 0;
    content: "check_box_outline_blank";
}

.rf-checkbox:checked + .custom-checkbox:before {
    content: 'check_box';
}

.checkbox-wrapper label {
    margin-left: 8px;
}

.checkbox-wrapper .rf-link {
    margin-left: 3px;
}

.info-message {
    opacity: 0;
    font-size: 13px;
}

.message.in, .info-message.in {
    opacity: 1;
    margin-bottom: 16px;
    padding: 8px;
}

.info-message.in {
    border-width: 1px;
    border-style: solid;
}

.suggestion-text {
    font-size: 13px;
    color: #767676;
}

.ul-scratchCodes {
    padding-inline-start: 0px;
    text-align: -webkit-center;
}

.scratchCodes {
    margin-top: 8px;
    font-size: 24px;
    line-height: 1.3;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-align: center;
    padding: 10px;
    display: grid;
    width: fit-content;
}

