﻿@font-face {
    font-family: sfprodisplay;
    src: url(../fonts/SFPRODISPLAYREGULAR.OTF);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: sfprodisplay;
    src: url(../fonts/SFPRODISPLAYBOLD.OTF);
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: sfprodisplaymedium;
    src: url(../fonts/SFPRODISPLAYMEDIUM.OTF);
    font-style: normal;
}

@font-face {
    font-family: sfprodisplaysemibold;
    src: url(../fonts/SFPRODISPLAYSEMIBOLD.otf);
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sfprodisplay, Arial, Helvetica, sans-serif;
    color: #344563;
    font-size: 14px;
}

.submit-button-text {
    font-family: sfprodisplaysemibold, Arial, Helvetica, sans-serif;
}

.page-container {
    width: 100%;
    background: url("../images/background.png") center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.menu-container {
    background-color: white;
    padding: 70px 90px;
    height: 100vh;
    width: 675px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo {
    width: 150px;
    height: 90px;
}
.logo img {
    max-width:100%;
    max-height:100%;
}
.menu-text-container {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-text--header {
    font-family: sfprodisplaymedium, Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #172B4D;
    line-height: 11px;
}

.menu-text--description {
    font-family: sfprodisplaymedium, Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #172B4D;
}

.form {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    position: relative;
}

input,
button {
    border-radius: 3px;
}

    input[type="text"],
    input[type="email"],
    input[type="password"] {
        width: 100%;
        height: 40px;
        padding: 0 12px;
        margin-top: 8px;
        border: 2px solid #dfe1e6;
    }

input {
    -webkit-transition: 0.5s;
    transition: 0.3s;
    outline: none;
}

    input:focus {
        border: 2px solid #4c9aff;
    }

        input:focus:hover {
            background-color: white;
        }

    input:hover {
        background-color: #dfe1e6;
    }

.form input.error {
    border: 2px solid #ff7452;
}

button[type="submit"] {
    margin-top: 25px;
    color: white;
    border: none;
    cursor: pointer;
}

    button[type="submit"]:hover {
        background-color: #333;
    }

.form-control {
    position: relative;
}

.social-login-text-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
    margin-bottom: 23px;
}

    .social-login-text-wrapper label {
        font-weight: bold;
        font-size: 18px;
        color: #172B4D;
    }

    .social-login-text-wrapper span {
        font-weight: normal;
        font-size: 16px;
        color: #172B4D;
    }

.social-login-button-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 0px;
    align-items: center;
}

button.btn-social-login {
    width: 115px;
    height: 63px;
    margin-top: 0;
    background: none;
    border: 1px solid #DFE1E6;
}

    button.btn-social-login:hover {
        background: none;
    }

    button.btn-social-login img {
        height: 33px;
    }

.form-footer {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #DFE1E6;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}


    .form-footer label {
        font-size: 13px;
        color: #6B778C;
    }

    .form-footer a {
        text-decoration: none;
        color: #0065FF;
        font-size: 15px;
        margin-bottom: 18px;
        margin-top: 7px;
    }



.menu-footer {
    padding-top: 18px;
    border-top: 1px solid #DFE1E6;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}


    .menu-footer a {
        text-decoration: none;
        color: #7A869A;
        font-size: 14px;
    }

.form-circle,
.page-circle {
    width: 4px;
    height: 4px;
    background-color: #0065ff;
    border-radius: 50%;
}

.page-circle {
    background-color: #344563;
}

.submit-button {
    position: relative;
    width: 100%;
    height: 50px;
    background-color: #000000;
}

.validation-error {
    margin: 0.75rem 0;
    width: 13.75rem;
    font-size: 0.875rem;
    display: flex;
    gap: 0.75rem;
    color: #ae2a19;
}

.validation-error-hidden {
    display: none;
}

.loader {
    position: absolute;
    top: 8px;
    right: 20px;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    transition: opacity 0.75s, visibility 0.75s;
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader::after {
    content: "";
    width: 20px;
    height: 16px;
    border: 2px solid #0065ff;
    border-top-color: #dfe1e6;
    border-radius: 50%;
    animation: loading 0.75s ease infinite;
}

@keyframes loading {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

.show-password-icon {
    position: absolute;
    top: 22px;
    right: 16px;
}

.login-form-remember-me-text {
    margin-top: 25px;
    font-weight: bold;
    color: #5e6c84;
    font-size: 14px;
}

.login-form-remember-me-group {
    margin-top: 8px;
    display: flex;
    gap: 8px;
    font-size: 14px;
}

    .login-form-remember-me-group label, .login-form-remember-me-group input {
        cursor: pointer;
    }

input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
}

label[for="rememberMe"] {
    color: #172b4d;
}

@media only screen and (max-width: 768px) {
    .menu-container {
        padding: 98px 80px 39px 80px;
        width: 100%;
    }
}


.accounts-container {
    margin-top: 28px;
    padding: 20px 0;
    border-top: 1px solid #DFE1E6;
    border-bottom: 1px solid #DFE1E6;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.account {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
}

    .account:hover {
        background-color: #EBECF0;
        cursor: pointer;
    }

    .account img {
        border-radius: 50%;
    }

.account-info-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.change-account-footer {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding-left: 20px;
}

    .change-account-footer button {
        border-style: none;
        background: none;
        color: #344563;
    }

.input-description {
    margin-top: 6px;
    font-size: 12px;
    color: #6b778c;
}

.recover-form-footer {
    justify-content: flex-start;
}

    .recover-form-footer a {
        color: #344563;
    }

    .recover-form-footer > a:hover {
        color: #0065ff;
        text-decoration: underline;
    }

input[type="tel"] {
    width: 40px;
    height: 44px;
    border: 1px solid #dfe1e6;
    text-align: center;
    color: #172b4d;
    outline: none;
    transition: all 0s;
}

input:focus {
    border: 2px solid #4c9aff;
}

.recover2-form-input-group {
    display: flex;
    gap: 8px;
}

.recover-form-send-again-button {
    border-style: none;
    background-color: white;
    color: #0065ff;
    margin-left: 18px;
    cursor: pointer;
}

    .recover-form-send-again-button:hover {
        text-decoration: underline;
    }

.recovery-success-message-container {
    height: 40px;
    background-color: #E3FCEF;
    padding: 0 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    border: 1px solid #36B37E;
}

.recovery-success-description {
    margin-top: 18px;
}

    .recovery-success-description a {
        font-weight: bold;
        color: #0065FF;
        text-decoration: none;
    }

.signup-form label {
    margin-top: 16px;
}

.signup-form-footer {
    justify-content: flex-start;
}

    .signup-form-footer a {
        font-weight: bold;
    }

.signup-menu-footer a {
    font-weight: bold;
    color: #0065ff;
}




hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}



.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.form-signin .btn {
    font-size: 80%;
    border-radius: 0rem;
    letter-spacing: .1rem;
    font-weight: bold;
}

.btn-google {
    margin-top: 0px !important;
    color: white !important;
    background-color: #ea4335 !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-group-lg > .btn, .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

[type=reset], [type=submit], button, html [type=button] {
    -webkit-appearance: button;
}

button, select {
    text-transform: none;
}

button, input {
    overflow: visible;
}

button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.btn-facebook {
    color: white !important;
    background-color: #3b5998 !important;
}

.btn-microsoft {
    color: white !important;
    background-color: #293784 !important;
}

.btn-external-login {
    margin-top: 5px !important;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.user-profile-tag {
    width: 100%;
    border: 1px solid #DFE1E6;
    padding: 20px 32px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

    .user-profile-tag .left {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }


    .user-profile-tag .image-box {
        width: 36px;
        height: 36px;
        background: #EBECF0;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        margin-right: 12px;
    }

    .user-profile-tag .user-info {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

        .user-profile-tag .user-info label {
            font-size: 18px;
            color: #091E42;
            font-weight: bold
        }

        .user-profile-tag .user-info span {
            font-size: 15px;
            color: #5E6C84;
        }

.btn-log-out {
    margin-top: 0 !important;
    background: #000;
    width: 114px;
    height: 36px;
}

.choose-app-title {
    font-size: 20px;
    color: #172B4D;
}
.choose-app-desc {
    font-size: 16px;
    color: #172B4D;
    margin-bottom:26px;
}
.choose-app-button-wrapper {
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap:4%;
}

.choose-app-button {
    width: 48%;
    height: 133px;
    border: 1px solid #DFE1E6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #091E42;
    text-decoration: none;
    cursor: pointer;
    gap:4px;
    margin-bottom:15px;
}
    .choose-app-button .text {
        font-size: 22px;
        font-weight: bold;
        cursor: pointer;
    }
    .choose-app-button .link {
        font-size: 11px;
        font-weight: lighter;
        cursor: pointer;
        word-break: break-all;
        padding: 0px 10px;
    }
    .choose-app-button .link img {
      margin-bottom:-1px;
    }
.btn-add-anathor-login {
    padding: 8px 20px;
    background: #000;
}
.btn-remove-signin {
    background: #960505;
    color: #fff;
    border: none;
    padding: 3px 10px;
    margin-left: 5px;
    cursor:pointer;
}
    .btn-remove-signin:hover {
        background: #ab3636;
        color: #fff;
        border: none;
        padding: 3px 10px;
        margin-left: 5px;
        cursor: pointer;
    }

@media only screen and (max-width: 1500px) {

    .menu-container {
        width: 541px;
    }
}
@media only screen and (max-width: 650px) {
  
    .user-profile-tag{
        padding:15px;
    }
    .user-profile-tag .user-info label {
        font-size: 12px;
    }
        .user-profile-tag .user-info span{
            font-size:11px;
        }
    .logo{
        width:100px;
    }
    .menu-text-container {
        margin-top: 22px;
    }
    .btn-log-out {
        width: 92px;
        height: 30px;
        font-size: 12px;
    }
    .choose-app-desc {
        font-size: 13px;
    }
    .menu-container {
        padding: 42px;
    }
}
@media only screen and (max-width: 550px) {

    .choose-app-button {
        width: 60%;
    }
}



@media only screen and (max-width: 420px) {

    .user-profile-tag {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .choose-app-button {
        width: 100%;
    }
}


.text-danger.validation-summary-errors ul {
    list-style: none;
    font-weight: bold;
}
.text-danger.validation-summary-errors {
    padding: 10px;
    background-color: #f5b2b2;
}