﻿@font-face {
    font-family: 'Exo 2';
    src: url(../fonts/Exo-2/Exo2-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/material-icons/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2') format('woff2');
}

body {
    font-family: 'Exo 2';
    color: #422B87;
}

h1 {
    font-weight: 600;
}

h2 {
    font-weight: 500;
}

.logo-container {
    padding-top: 15%;
    margin-left: -17.188em;
}

.logo {
    width: 128px;
    height: 32px;
}

.login-container {
    padding-top: 2.5em;
}

.login-text-container {
    display: flex;
    flex-direction: column;
    color: #181258;
}

.login-container-form {
    max-width: 24.875em;
}

.login-text {
    font-size: 28px;
    line-height: 32px;
    margin: 0;
}

.login-text-management, .login-text-self-service {
    font-size: 18px;
    line-height: 16px;
}

.input-field {
    border-radius: 6px;
    fill: #FFFFFF;
    border: 1px solid #D0D5DD;
    width: 398px;
    height: 48px;
    font-family: 'Exo 2';
}

label {
    display: block;
    margin-bottom: 0.313em;
}

input {
    text-align: left;
    padding-left: 3em;
    box-sizing: border-box;
}

input:focus-visible {
    border: 1px solid #635196;
    stroke-width: 1;
}

input:hover {
    cursor: pointer;
}

.username-input-container {
    position: relative;
}

.username-input-container input {
    background: none; 
}

.username-input-container::before {
    content: '';
    position: absolute;
    top: 85px;
    left: 10px;
    right: 0;
    bottom: 0;
    width: 20px;
    background-image: url(/images/icons/user-default.svg);
    background-repeat: no-repeat;
}

.username-input[readonly] {
    background-color: #f0f0f0;
    color: #888888; 
    border: 1px solid #cccccc; 
    cursor: not-allowed; 
}

.username{
    padding-top: 3em;
}

.password {
    padding-top: 1.25em;
}

.password-input {
    background-image: url(/images/icons/password.svg);
    background-repeat: no-repeat;
    background-position: 10px;
    margin-top: 12px;
    outline: none;
}

button {
    line-height: 18px;
    font-family: 'Exo 2';
    font-size: 16px;
}

.next-button {
    margin-top: 4.5em;
    height: 48px;
    width: 398px;
    background-color: #1B1464;
    border-radius: 6px;
    color: #FFFFFF;
    border: none;
}

button:hover {
    background-color: #2B1D72;          
}

button:focus {
    background-color: #18125A;
}

.login-button {
    margin-top: 2.5em;
    height: 48px;
    width: 179px;
    background-color: #1B1464;
    border-radius: 6px;
    color: #FFFFFF;
    border: none;
}

.back-button {
    margin-top: 2.5em;
    height: 46px;
    width: 179px;
    background-color: #FFFFFF;
    border-radius: 6px;
    color: black;
    border: 1px solid #D0D5DD;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
}

a:hover {
    border: 1px solid #98A2B3;
}

a:focus {
    background-color: #D0D5DD;
}

.double-buttons {
    display: flex;
    justify-content: space-between;
}

.forgot-password {
    display: flex;
    padding-top: 1.25em;
    padding-left: 3.125em;
}

.forgot-password-link {
    color: #422B87;
    margin-left: 0.313em;
}

.forgot-password-link:hover {
    border: none;
}


.alert {
    background-color: #FAE6EA;
    border-radius: 6px;
    max-width: 100%;
    margin: 1.25em 0 1.25em 0;
    padding: 0.313em 0 0.313em 0;
    color: #93022D;
    height: 70px;
}

.danger {
    background-color: #FAE6EA;
    border-radius: 6px;
    width: 90%;
    margin: 1.25em;
    color: #93022D;
    padding: 0.313em 0 0.313em 0;
}

.error-title {
    margin-left: 1.25em;
    color: #93022D;
}

.reset-password-container {
    max-width: 398px;
}

.password-reset-confirmation-message {
    background-color: #D8ECF7;
    border-radius: 6px;
    max-width: 100%;
    margin: 1.25em 0 1.25em 0;
    padding: 0.313em 0 0.313em 0;
    color: #004369;
}

.modal {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    background-color: #fafafa;
    padding: 0;
    max-height: 70%;
    width: 55%;
    margin: auto;
    overflow-y: auto;
    border-radius: 2px;
    will-change: top, opacity;
    max-width: 650px;
    border-radius: 6px;
    overflow-x: hidden;
}

.modal:focus {
    outline: none
}

@media only screen and (max-width: 992px) {
    .modal {
        width: 80%
    }
}

.modal h1, .modal h2, .modal h3, .modal h4 {
    margin-top: 0
}

.modal .modal-content {
    padding: 24px
}

.modal .modal-close {
    cursor: pointer
}

.modal .modal-footer {
    border-radius: 0 0 2px 2px;
    background-color: #fafafa;
    padding: 4px 6px;
    height: 56px;
    width: 100%;
    text-align: right
}

.modal .modal-footer .btn, .modal .modal-footer .btn-large, .modal .modal-footer .btn-small, .modal .modal-footer .btn-flat {
    margin: 6px 0
}

.modal-overlay {
    position: fixed;
    z-index: 999;
    top: -25%;
    left: 0;
    bottom: 0;
    right: 0;
    height: 125%;
    width: 100%;
    background: #000;
    display: none;
    will-change: opacity
}

.modal.modal-fixed-footer {
    padding: 0;
    height: 70%;
}

.modal.modal-fixed-footer .modal-content {
    position: absolute;
    height: calc(100% - 100px);
    max-height: 100%;
    overflow-y: auto;
}

.modal.modal-fixed-footer .modal-footer {
    border-top: 1px solid rgba(0,0,0,0.1);
    position: absolute;
    bottom: 0%
}

.modal.bottom-sheet {
    top: auto;
    bottom: -100%;
    margin: 0;
    width: 100%;
    max-height: 45%;
    border-radius: 0;
    will-change: bottom, opacity
}

.accept-button {
    height: 48px;
    width: 179px;
    background-color: #1B1464;
    border-radius: 6px;
    color: #FFFFFF;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.reject-button {
    height: 48px;
    width: 179px;
    background-color: #FFFFFF;
    color: #B91C1C;
    border-radius: 6px;
    border: 1px solid #D0D5DD;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.reject-button:hover {
    background-color: #B91C1C;
    color: #FFFFFF
}

.policy-container {
    margin-left: 10%;
}

.policy-buttons {
    height: 48px;
    width: 240px;
    background-color: #FFFFFF;
    border-radius: 6px;
    color: #1B1464;
    border: 1px solid #D0D5DD;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.policy-buttons-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 0 20px;
}

.policy-buttons-sub-container {
    padding-right
}

.privacy-continue-button {
    height: 48px;
    width: 240px;
    background-color: #1B1464;
    border-radius: 6px;
    color: #FFFFFF;
    border: 1px solid #D0D5DD;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 32px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.i.small {
    font-size: 2rem;
}

.green-text {
    color: #4CAF50;
}

.red-text {
    color: #F44336;
}

.hide {
    display: none;
}

.icon-container {
    display: flex;
    align-items: center;
}

.btn.disabled, .disabled.btn-large, .disabled.btn-small, .btn-floating.disabled, .btn-large.disabled, .btn-small.disabled, .btn-flat.disabled, .btn:disabled, .btn-large:disabled, .btn-small:disabled, .btn-floating:disabled, .btn-large:disabled, .btn-small:disabled, .btn-flat:disabled, .btn[disabled], .btn-large[disabled], .btn-small[disabled], .btn-floating[disabled], .btn-large[disabled], .btn-small[disabled], .btn-flat[disabled] {
    pointer-events: none;
    background-color: #DFDFDF !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #9F9F9F !important;
    cursor: default
}

.profile-select {
    font-family: 'Exo 2';
    background-color: #FFFFFF;
    color: #1B1464;
    border-radius: 6px;
    height: 48px;
    width: 400px;
}

@media only screen and (max-width: 768px) {
    .login-container, .login-container-form {
        max-width: 100%;
    }

    .username-input-container, .password-input-container, .login-text-container, .next-button, .reset-password-container, .alert{
        margin-left: 8%;
    }

    .logo-container {
        margin-left: -13em;
        padding-top: 25%;
    }

    .username-input, .password-input, .password-reset-confirmation-message {
        max-width: 85%;
    }

    .back-button, .login-button {
        max-width: 8.75em;
    }

    .next-button {
        max-width: 19.5em;
    }

    .double-buttons {
        justify-content: space-evenly;
        max-width: 95%;
    }

    .alert {
        max-width: 78%;
    }
    
}