﻿#lds-ripple {
    display: none;
    position: relative;
    width: 80px;
    height: 80px;
}

    #lds-ripple div {
        position: absolute;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        text-align: center;
        border: 4px solid #2EA744;
        opacity: 1;
        border-radius: 50%;
        animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}


[type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

    [type=radio] + img {
        cursor: pointer;
    }

    [type=radio]:checked + img {
        outline: 2px solid #f00;
    }


.login-container {
    width: 100%;
    height: 100vh;
    background-color: #00644b;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#warning-container {
    margin-right: 35px;
    margin-top: 20px;
}

.error-message {
    color: white;
}

.login-error {
    font-size: 13px;
    text-align: center;
    white-space: pre-wrap;
    font-family: 'Open Sans', sans-serif;
    color: red;
}

    .login-error ul {
        list-style-type: none;
    }

.login-wrapper {
    width: auto;
    max-width: 400px;
    min-width: 300px;
    background-color: #F3F3F3;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}


.login-logo-wrapper {
    display: flex;
    justify-content: center;
}

.login-logo {
    width: 50%;
}


.login-appName {
    font-weight: 700;
    font-size: 50px;
    text-align: center;
    margin-top: -30px;
    color: #414a4c;
    font-family: 'Open Sans', sans-serif;
}

.warningText {
    font-size: 13px;
    text-align: center;
    color: #3b444b;
    white-space: pre-wrap;
    font-family: 'Open Sans', sans-serif;
}

.login-input {
    border: none;
    width: 80%;
    margin-top: 20px;
    height: 45px;
    background: #FFFFFF;
    border: 1px solid #8492A5;
    border-radius: 4px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: gray;
    opacity: 1; /* Firefox */
    font-style: normal;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: gray;
    font-style: normal;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: gray;
    font-style: normal;
}

.login-inputs {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -10px;
}


.login-button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}



.login-custom-button {
    background: #2EA744;
    border: 1px solid #8492A5;
    border-radius: 48px;
    width: 80%;
    height: 50px;
    color: white;
    font-size: 18px;
    cursor: pointer;
}


.forget-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.forget-link {
    color: gray;
    font-family: 'Open Sans', sans-serif;
}

.flag-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

@media only screen and (max-width: 600px) {
    .warning-container {
        width: 100%;
    }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
