﻿/* ------------------------------
   General Layout and Background
---------------------------------*/
body {
    background-color: #f7f7f7 !important;
    margin: 0 !important;
    font-family: 'Montserrat', sans-serif !important;
}

/* Centers the login form responsively */
.login-container {
    width: 100% !important;
    max-width: 655px !important;
    border-radius: 8px;
}

.login-logo {
    width: 11.1rem;
}
.footer-icon {
    width: 94px;
    height: 31px;
}
.loginContainer-footer {
    display: flex;
    width: 100%;
    border-radius: 0rem 0rem 0.5rem 0.5rem;
    background: var(--Gray-500, #0C111D);
    justify-content: center;
    align-items: center;
    height: 4.5625rem;
    padding: 0rem 10.1875rem;
}

.forgot-container {
    width: 540px !important;
    padding: 48px !important;
    border-radius: 8px;
}

/* ------------------------------
   Typography Styles
---------------------------------*/

.display-sub {
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1px;
}

.body-medium {
    font-family: Montserrat !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 18px !important;
}

.body-bold {
    font-weight: 700 !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    text-decoration: underline !important;
    text-decoration-style: solid !important;
    text-decoration-thickness: 1px !important;
    text-underline-offset: 2px !important;
}

.title-h4-semi-bold {
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    text-align: center !important;
}

/* Alert styling */
.custom-alert {
    max-width: auto !important;
    height: auto !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    border: 1px solid red !important;
    background-color: #FFFBFA !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075) !important;
}

/* Authenticator layout */
.authenticator-wrapper {
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem !important;
    overflow: hidden !important;
}

@media (max-width: 768px) {
    .authenticator-wrapper {
        height: auto !important;
        align-items: flex-start !important;
        overflow: auto !important;
    }
}

/* Remove default outline on focus */
.no-outline:focus {
    outline: none !important;
    box-shadow: none !important; /* Optional: removes Bootstrap's focus shadow */
}
