* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', Arial, sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif
}

.alternative-login {
    background-color: white;
    border-style: solid;
    border-width: 1px;
    border-radius: 8px;
    border-color: rgb(238, 238, 238);
    transition: 0.3s ease;
}

    .alternative-login:hover {
        background-color: rgb(238, 238, 238);
    }

.btn-theme-primary {
    border: 1px solid transparent;
    border-radius: 8px;
    border-style: solid;
    border-width: 2px;
    border-color: white;
    background-color: #07153b;
    border-radius: 10px;
    color: white;
    transition: 0.3s ease;
}

    .btn-theme-primary:hover {
        background-color: white;
        color: #07153b;
        border-color: #07153b;
    }



.theme {
    color: #07153b
}

body {
    background-color: #c9d6ff;
    background: #07153b;
}

.eye-icon-password {
    transform: translate(-10px, 18px);
    cursor: pointer;
}

#divAjaxProgress {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    opacity: 0.9;
    background-color: #fbf8f8;
    z-index: 1000000;
    text-align: center;
}

/*Mobile UI translation */

.min-height-450px {
    min-height: 450px;
}


@media only screen and (min-width: 501px) {
    .login-container {
        background-color: #ffffff;
        border-radius: 30px;
        position: relative;
        width: 430px;
        /*minimum height on most mobiles*/

        min-height: 450px;
    }
}

@media only screen and (max-width: 500px) {
    .login-container {
        background-color: #ffffff;
        border-radius: 30px;
        position: relative;
        max-width: 93%;
        /*minimum height on most mobiles*/
        min-height: 450px;
    }
}

.login-container p {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.3px;
    margin: 20px 0;
}

.login-container span {
    font-size: 12px;
}

.login-container a {
    color: #333;
    font-size: 12px;
    cursor: pointer;
    font-weight: bold;
    color: #07153b;
}

.login-container button {
    font-size: 12px;
    padding: 10px 45px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 10px;
    cursor: pointer;
}

    .login-container button.hidden {
        background-color: #07153b;
        color: white;
        transition: 0.3s ease;
        border: 2px solid transparent;
        border-radius: 8px;
    }


.login-container form {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    padding: 0 40px;
    height: 100%;
    border-radius: 30px;
}

.login-container input {
    background-color: #eee;
    border: none;
    margin: 8px 0;
    padding: 10px 15px;
    font-size: 13px;
    border-radius: 8px;
    width: 100%;
    outline: none;
}

.form-container {
    position: relative;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.sign-in { /*changed*/
    left: 0;
    width: 100%;
    z-index: 1;
}



.sign-up {
    left: 0;
    width: 100%;
    z-index: 1;
}

.max-height-100-px {
    max-height: 100px;
}

.validation-summary {
    padding: 15px;
    border: 1px solid red;
    background-color: #f8d7da;
    color: #721c24;
    margin-bottom: 10px;
    font-weight: bold;
}

    .validation-summary ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    .validation-summary li {
        margin-bottom: 5px;
    }


.btn-theme {
    border: 1px solid transparent;
    border-radius: 8px;
    border-style: solid;
    border-width: 2px;
    border-color: white;
    background-color: #fc3b00;
    border-radius: 10px;
    color: white;
    transition: 0.3s ease;
}

    .btn-theme:hover {
        background-color: white;
        color: #f76437;
        border-color: #f76437;
    }

#divAjaxProgress {
    height: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
