body {
    font-family: 'Inter', 'Lato', sans-serif;
}

#wrongLoginMessage {
    display: none;
    background: #fdd3d3;
    color: var(--color-negative);
    width: fit-content;
    padding: 5px 20px;
    border-radius: 20px;
    margin: auto;
    margin-bottom: 20px;

}

#wrongLoginMessage::before {
    content: "\f00d"; /* Unicode for the Font Awesome fa-times-circle-o icon */
    font-family: "FontAwesome";
    font-size: 15px;
    color: var(--color-negative);
    margin-right: 15px;
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;

}

.loginPageCard {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 0px 20px 40px 20px;

    background: white;
    border-radius: var(--border-radius-primary);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);

    max-height: 90%;
    overflow: scroll;
    scrollbar-width: none;

}

.login-section {
    color: black;
    font-weight: 500;
    font-size: 27px;
    padding-bottom: 0px;
}


#loginPageCardContent {
    display: flex;
    width: 100%;
    gap: 30px;

    min-height: 400px;
    align-items: center;
}

#adminLoginForm {
    margin-right: 20px;
    padding-bottom: 10px;
}

#loginPagePresentation {
    max-height: 74vh;
    overflow: scroll;
    align-content: center;
    scrollbar-width: none;
}

#continueBtn {
    margin-top: 15px;
}

#companySelector {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 15px;
}
.companyOption {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 5px 0px;
    cursor: pointer;
    margin-left: 5px;
    margin-right: 10px;
}

.companyOption:hover {
    border-left: 5px solid #e0e0e0;
    font-weight: 500;
    margin-left: 0px;
    background: rgb(236 236 236);
    border-radius: 0px 6px 6px 0px;
}

.companyOption img {
    width: 30px;
    margin-left: 5px;
    height: 30px;
    object-fit: contain;
}

#companySelector, #companyLoginMethods {
    display: none;
}

#email-container.locked .input-group-addon,
#email-container.locked #email{
    background: #f0f0f0;
    -webkit-box-shadow: 0 0 0 30px #f0f0f0 inset !important; /* for chrome's autocomplete stupid colors */
}

#password-container.login-failed *
{
    color: var(--color-negative);
}

#restartLoginButton {
    display: none;
    font-size: 20px;
    padding: 10px 17px;
    position: absolute;
    right: 0px;
    color: #bab9b9;
    cursor: pointer;
}

#restartLoginButton:hover {
    color: #777777;
}


#email, #password, #mfaCode {
    margin-bottom: 0;
    border: none;
    background: #e8f0fe;
}

#password-container, #mfa-container, #loginBtn {
    margin-top: 15px;
}

.btn-secondary.loginWithAzure:not(#loginBtn) {
    margin-top: 15px;
}

#resetPasswordLink {
    cursor: pointer;
    text-align: right;
    margin-top: 20px;
    width: fit-content;
    float: right;
}

#loginPageLeftSection {
    flex: 6;
    overflow: hidden;
}

#hiddenPass {
    width: 1px;
    height: 1px;
    border: none;
}

@media (max-width: 800px) {
    #loginPageLeftSection {
        display: none;
    }
    #loginPageCardContent {
        padding-left: 20px;
    }
}