.loading-page.fullscreen {
    z-index: 999;
    background-color: #0000004e;
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-container {
    height: calc(5rem - 1px);
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-300);
}

/* .header-container {
    height: 5rem;
    border-bottom: 1px solid var(--blue-500);
} */

.header-content {
    max-width: 1460px;
    height: 5rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.header-content h1 {
    font-size: 1.5rem;
    padding-left: 2rem;
    color: var(--gray-800);
}

.header-content img {
    /* width: 5rem; */
    height: 3rem;
    object-fit: contain;
    object-position: center;
    background-color: var(--white);
}

.header-content .login-header-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-container {
    background-color: var(--white);
    background-image: url('/linkAir/assets/img/midleware/base_login.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    height: calc(100vh - (5rem + 2.5rem)); /* Altura total da tela menos o header, footer */
}

.main-content {
    max-width: 500px;
    height: calc(100vh - (5rem + 2.5rem)); /* Altura total da tela menos o header, footer */
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-between;
}

.main-content .form-container {
    background-color: var(--white);
    max-height: 520px;
    height: 80%;
    width: 100%;
    border-radius: 0.25rem;
    border: 1px solid var(--green-500);
    /* box-shadow: rgb(0 0 0 / 10%) 0px 20px 25px -5px, rgb(0 0 0 / 4%) 3px 10px 10px -5px; */

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.main-content .form-container > div:nth-child(even) {
    margin: 2rem 0;
}

.header-login-form {
    width: calc(100%);
    display: flex;
    align-self: flex-start;
    justify-content: space-between;
    padding: 0.5rem;
    border-bottom: 1px solid var(--green-500);
    /* margin: 0 1rem; */
}

.header-login-form img {
    width: auto;
    height: 3rem;
}

/* .header-login-form img:last-child {
    height: 3rem;
} */

.form-container .google-login-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: var(--green-500);
    border: 1px solid var(--green-500);
}

.form-container .google-login-form img {
    background-color: #ffffff;
    padding: 0.25rem;
}

.form-container .google-login-form p {
    color: #ffffff;
    padding: 0.25rem;
    margin: 0;
}

.login-form-container {
    height: 100%;
    width: calc(100% - 2rem);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.login-form-container .login-form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: var(--gray-800);
}

.login-form-container .login-form input {
    border: 0.5px solid var(--green-500);
    border-radius: 0.25rem;
    padding: 0.25rem;
    margin-top: 0.25rem;
    width: 100%;
}

.login-form-container .login-form .form-label {
    width: 80%;
}

.login-form-container button {
    width: 80%;
}

.login-form .form-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
}

.remember-me-container label:hover,
.remember-me-container input:hover {
    cursor: pointer;
    filter: brightness(0.95);
}

.remember-me-container label,
.remember-me-container input {
    display: inline-flex;
    max-inline-size: fit-content;
}

.change-password {
    text-decoration: underline;
    color: var(--green-500);
}

.help-login {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    width: 80%;
}

.separator-login-form {
    background-color: var(--green-500);
    color: var(--green-500);
    width: calc(100% - 2rem);
    height: 0.5px;
    margin-top: 0 !important;
}

.separator-login-form-label {
    margin: -1rem 0 0 -1.75rem;
    background-color: var(--white);
    position: absolute;
    padding: 0 1rem;
    font-size: 1.5rem;
}

.footer-container {
    height: calc(2.5rem - 1px);
    background-color: var(--white);
    border-top: 1px solid var(--gray-300);
}

/* .footer-container {
    height: 2.5rem;
    border-top: 1px solid var(--blue-500);
} */

.footer-content {
    height: 2.5rem;
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-content .sistem-info h1 {
    font-size: 1rem;
    margin: 0;
    padding: 0;
    color: var(--gray-800);
}

.footer-content .copy-description {
    color: var(--gray-800);
}

@media(max-height: 620px) {
    
    .main-content .form-container {
        height: 90%;
    }

}

@media(max-width: 720px) {

    .header-container,
    .header-content {
        height: 10rem;
        justify-content: center;
        align-content: center;
        flex-direction: column;
        text-align: center;
    }
    
    .header-content h1 {
        padding: 0;
    }
    
    .main-container, .main-content {
        height: calc(100vh - (10rem + 2.5rem)); /* Altura total da tela menos o header, footer */
    }

    .help-login {
        flex-direction: column;
    }

    .help-login div:first-child {
        margin-bottom: 1rem;
    }

}