@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400;1,700&display=swap');

* {
    font-family: 'Open Sans', sans-serif;
}

.legacy-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.hidden {
    display: none;
}

.legacy-overlay img {
    display: block;
    background: #fff;
    padding: 10px;
    border: 1px solid #444;
    max-width: 100%;
    max-height: 100%;
}

.splash-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #ffffff;
    z-index: 1000;
}

.splash {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo {
    fill: #583d8d;
}

.logo .progress {
    stroke-width: 15;
    stroke: #583d8d;
    stroke-linecap: butt;
    -webkit-animation: dash 2.5s infinite;
    animation: dash 2.5s infinite;
}

.wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.animate {
    font-size: 24px;
}

.animate span {
    font-size: 36px;
    animation-name: blink;
    animation-duration: 1.4s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}

.animate span:nth-child(2) {
    animation-delay: 0.2s;
}

.animate span:nth-child(3) {
    animation-delay: 0.4s;
}

.animate-small {
    font-size: 12px;
}

.animate-small span {
    font-size: 18px;
}

@keyframes blink {
    0% {
        opacity: 0.2;
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

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

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

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 0, 250;
        stroke-dashoffset: 0;
    }

    25% {
        stroke-dasharray: 250, 0;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 0, 250;
        stroke-dashoffset: -250;
    }

    75% {
        stroke-dasharray: 250, 0;
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dasharray: 0, 250;
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 0, 250;
        stroke-dashoffset: 0;
    }

    25% {
        stroke-dasharray: 250, 0;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 0, 250;
        stroke-dashoffset: -250;
    }

    75% {
        stroke-dasharray: 250, 0;
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dasharray: 0, 250;
        stroke-dashoffset: 0;
    }
}

.logo {
    margin: 10px;
    max-width: 200px;
}

.icon.logo {
    width: 100%;
    fill: #583d8d;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding-bottom: 10%;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-form > div {
    margin: 10px;
}

a.button {
    text-decoration: none;
}

.seamless-link {
    color: #583d8d;
    text-decoration: none;
}

.seamless-link:hover {
    text-decoration: underline;
}

.button {
    border: 1px solid #583d8d;
    color: #583d8d;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 1px #ccc;
    background-color: #fff;
    width: 100px;
    font-family: Arial;
    font-size: 13px;
}

.button:active {
    box-shadow: none;
}

.button.btn-primary {
    background-color: #583d8d;
    color: #f5f5f5;
}

.form-control {
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 40px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

/*#informBlock {
}

#informBlock {
  display: none;
}*/

.text-danger,
.field-validation-error {
    color: #ff0000;
}

.text-success {
    color: #000;
}

.forgot-container {
    text-align: right;
}

textarea {
    min-width: 200px;
    min-height: 50px;
    font-family: Arial;
}

.field-validation-error {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

.t--a__center {
    text-align: center;
}

.t--upper {
    text-transform: uppercase;
}
