body {
    height: 100vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: var(--color-bg);
    overflow: hidden; /* Evitar scroll desnecessário */
}

.container {
    display: flex;
    height: 100%;
    gap: 100px;
    margin-left: 80px;
}

.login-form {
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    width: 25%;
    margin-top: 100px;
    margin-bottom:0;
}

.form-header > h1 {
    font-size: 36px;
    font-weight: bold;
}

form-header > p {
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 800;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    margin-bottom:30px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #000;
}

    .input-group div {
        width: 100%;
        position: relative;
    }

input {
    padding: 4px 16px;
    border: 1px solid #A3A4A6;
    transition: border-color 0.3s ease;
    border-radius: 4px;
    height: 50px;
    width: 100%;
}

    input:hover {
        border-color: #ff6600;
    }


.input-group input:first-child {
    padding-right: 36px;
}

input:focus {
    outline: none;
    border-color: var(--primary-color-orange-700);
}

.input-group input[type="password"]::-ms-reveal,
.input-group input[type="password"]::-ms-clear,
.input-group input[type="password"]::-webkit-reveal-button,
.input-group input[type="password"]::-webkit-clear-button {
    display: none;
}

.input-group .icon-login {
    position: absolute;
    right: 16px;
    bottom: 50%;
    transform: translateY(50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
    background: url('../img/login.svg');
    background-size: contain;
}

.input-group input:focus + .icon-login {
    background-image: url('../img/loginActive.svg');
}

.input-group .icon-password {
    position: absolute;
    right: 16px; /* Adjusted to make space for the show password checkbox */
    bottom: 50%;
    transform: translateY(50%);
    width: 22px;
    height: 19px;
    pointer-events: none;
    background: url('../img/password.svg');
    background-size: contain;
}

.input-group input:focus + .icon-password {
    background-image: url('../img/password.svg');
}

/* Ícone do olho aberto quando a senha estiver visível */
.input-group input[type="text"] + .icon-password {
    background-image: url('../img/passwordActive.svg');
}

.input-group input[type="password"] + .icon-password {
    background-image: url('../img/password.svg');
}

.input-group .show-password {
    display: none;
}

.input-group .show-password + .toggle-password {
    margin: 0;
    position: absolute;
    right: 16px;
    bottom: 50%;
    transform: translateY(50%);
    width: 22px;
    height: 19px;
    cursor: pointer;
    background-size: contain;
}

.input-group .show-password:checked ~ input[type="password"] {
    display: none;
}

.input-group .show-password:checked ~ input[type="text"] {
    display: inline-block;
}

.btn-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 0;
}

    .btn-group > button {
        width: 100%;
        background: #dd5100;
        gap: 5px;
    }


footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top:0;
}

.line {
    border-bottom: 1px solid var(--neutral-color-100);
    width: 100%;
}

.powered-by {
    position: absolute; /* Fixa o elemento na base */
    bottom: 20px; /* Distância da base */
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza horizontalmente */
    gap: 30px; /* Espaço entre texto e logo */
    width: 100%; /* Ocupa a largura total do contêiner pai */
    padding: 0 20px; /* Padding consistente */
    box-sizing: border-box; /* Evita overflow */
    height: auto; /* Ajusta a altura automaticamente */
}

.powered-by-text {
    font-family: sans-serif; /* Replace with actual font name if different */
    font-size: 18px;
    font-weight: 400; /* Adjust based on desired appearance */
    color: var(--neutral-color-500); /* Match the color of 'Suporte Agero' for consistency */
}

.support {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom:150px;
}

    .support > span:first-child {
        color: var(--neutral-color-500);
    }

    .support > span:not(:first-child) {
        color: var(--neutral-color-300);
    }

.side-banner {
    background-image: url(/img/sideBanner.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 70%;
    padding: 20px;
    position: relative; /* Adicionado para ser o contêiner de referência */
    height: 100%; /* Garante que o side-banner ocupe toda a altura disponível */
}

.text-banner {
    position: absolute; /* Fixa o elemento na tela */
    bottom: 20px; /* Distância da base */
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; /* Garante que o text-banner ocupe a largura total do contêiner pai */
    padding: 0 20px; /* Mantém o padding consistente */
    box-sizing: border-box; /* Evita que o padding cause overflow */
}

.text-banner > h1 {
    color: #fff3eb;
    font-size: clamp(24px, 5vw, 38px); /* Ajusta o tamanho da fonte proporcionalmente */
    text-align: center;
    font-weight: bold;
    margin: 0 0 10px 0; /* Ajusta a margem para evitar sobreposição */
}

.text-banner > h2 {
    color: #fff3eb;
    font-size: clamp(12px, 3vw, 16px); /* Ajusta o tamanho da fonte proporcionalmente */
    text-align: center;
    font-weight: bold;
    line-height: 20px;
    margin: 0; /* Remove margem inferior para melhor alinhamento */
}

@media (max-width: 768px) {
    .side-banner {
        display: none; /* Já definido, mantém o banner oculto em telas pequenas */
    }

    .text-banner {
        display: none; /* Garante que o text-banner também seja oculto em telas pequenas */
    }
}

.modal-toggle {
    display: none;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.4);
    justify-content: center;
    align-items: center;
}

.modal-content {
    display: flex;
    flex-direction: column;
    background-color: var(--primary-color-text);
    padding: 32px;
    border-radius: 12px;
    width: 459px;
    gap: 24px;
}

    .modal-content > div {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

        .modal-content > div > div {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

            .modal-content > div > div > h2 {
                color: var(--primary-color-orange-700);
            }

    .modal-content > button {
        display: flex;
        justify-content: center;
        gap: 4px;
        align-items: center;
    }

        .modal-content > button > span {
            color: #dd5100;
        }

.modal-close {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.modal-close > span {
    color: var(--secondary-color-green-800);
}

.modal-toggle:checked + .modal {
    display: flex;
}

.confirmation-content > p {
    font-size: 20px;
    line-height: 130%;
}

.forgot-password {
    display: block;
    margin-top: 8px;
    text-align: right;
    color: #dd5100;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    bottom: 153px;
    left: 170px;
    z-index: 10; /* Garante que o link fique acima de outros elementos */
}

    .forgot-password:hover {
        text-decoration: underline;
    }
