.content {
    width: 100%;
    height: 100vh;
    display: flex;
}

.left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.left-content {
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 100%;
    justify-content: space-around;
}

.two-steps {
    font-weight: 600 !important;
}

.digital-secure {
    width: 60px;
}

.left2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.input-control {
    width: 100%;
}

.form-control {
    width: 100% !important;
    border: 1px solid #DFDFDF !important;
    border-radius: 12px;

}

.labelemail {
    color: #DFDFDF !important;
}

.text-title {
    font-size: 43px;
    font-weight: 700;
    text-align: center;
}

.text-inf {
    text-align: center;
}

.right-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
}

.right {
    width: 50%;
    background-color: #202020;
}

/* Inicio Left */
.slogan {
    font-weight: 400;
    text-transform: uppercase;
}

.cta {
    font-weight: 800;
    font-size: 50px;
    text-align: left;
    padding-bottom: 50px;
}



.btn-2steps-settings {
    background-color: #202020;
    text-transform: uppercase;
    font-weight: 700;
    width: 100%;
    margin: 0 auto;
    padding: 6px;
    transition: 0.8s ease-in-out;
    color: white;
}

.btn-2steps-settings:hover {
    background-color: white;
    color: #202020;
    transition: 0.8s ease-in-out;
    border: 1px solid #202020;
}

.btn-2steps-not {
    background-color: white;
    color: #202020;
    transition: 0.8s ease-in-out;
    border: 1px solid #202020;
    width: 100%;
    margin: 0 auto;
    padding: 6px;
    text-transform: uppercase;
    font-weight: 500;
}

.btn-2steps-not:hover {
    background-color: #f7d935;
    color: #202020;
    transition: 0.8s ease-in-out;
    border: 1px solid #202020;
}

.vex {
    font-weight: 700;
}


.back-login {
    text-decoration: none;
    color: #919191;
    font-size: 13px;
}

.resend-code {
    color: #919191;
    font-size: 14px;
    padding-bottom: 20px;
}

.resend-code a {
    text-decoration: none;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

/* Ícone de alternar visibilidade da senha */
.password-visibility {
    text-align: center;
    font-size: 40px;
    cursor: pointer;
    margin-bottom: 10px;
}

.password-visibility span {
    transition: transform 0.2s ease;
}

.password-visibility span:hover {
    transform: scale(1.1);
}

#monkey-icon {
    font-size: 80px !important; /* Aumente o valor se necessário */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px; /* Ajuste conforme necessário */
    height: 100px; /* Ajuste conforme necessário */
    line-height: 1;
    transition: transform 0.2s ease;
}

#monkey-icon:hover {
    transform: scale(1.2); /* Dá um zoom ao passar o mouse */
}

.big-monkey {
    font-size: 100px !important; /* Teste aumentando para ver a diferença */
}


.vex {
    font-weight: 700;
}

.valid {
    font-weight: 400 !important;
}

.toast-container {
    z-index: 1050;
}

.toast-body {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-body i {
    font-size: 20px;
}
/* Fim Left */


/* Inicio Right */

.right-footer {
    position: absolute;
    bottom: 105px;
    right: 95px;
    display: flex;
    width: 40%;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
}

.social-media-icons {
    display: flex;
    gap: 15px;
}

.social-media-icons span {
    position: relative;
}

.position-relative {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

/* Lista de requisitos */
.password-requirements {
    list-style: none;
    padding: 0;
    font-size: 14px;
    margin-top: 10px;
}

.password-requirements li {
    color: red;
}

.password-requirements li.valid {
    color: green;
    font-weight: bold;
}

/* Desabilitar botão */
.btn-recover.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.social-media-icons span::after {
    content: attr(data-tooltip);
    /* O texto vem do data-tooltip */
    position: absolute;
    bottom: 120%;
    /* Ajuste para posicionar acima do ícone */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    /* Fundo escuro */
    color: #fff;
    /* Texto branco */
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10;
}

.social-media-icons span:hover::after {
    opacity: 1;
    visibility: visible;
}

.instagram-icon img {
    transition: 0.8s ease-in-out;
}

.instagram-icon img:hover {
    transform: scale(1.2);
    transform: rotate(180deg);
    cursor: pointer;
    transition: 0.8s ease-in-out;
}

.facebook-icon img {
    transition: 0.8s ease-in-out;
}

.facebook-icon img:hover {
    transform: scale(1.2);
    transform: rotate(180deg);
    cursor: pointer;
    transition: 0.8s ease-in-out;
}

.x-icon img {
    transition: 0.8s ease-in-out;
}

.x-icon img:hover {
    transform: scale(1.2);
    transform: rotate(180deg);
    cursor: pointer;
    transition: 0.8s ease-in-out;
}

.null {
    width: 100%;
    height: 8%;
}

/* Fim Right */




@media (max-width: 768px) {
    .content {
        flex-direction: column;
        /* Alinha os elementos verticalmente */
        height: auto;
    }

    .left,
    .right {
        width: 100%;
        /* Cada seção ocupa 100% da largura */
        height: auto;
        /* Altura ajustável */
    }

    .left-content {
        width: 90%;
        /* Reduz a largura do conteúdo para caber melhor */
        margin: 20px auto;
        /* Centraliza com margem */
    }

    .cta {
        font-size: 30px;
        /* Reduz o tamanho da fonte do título */
        text-align: center;
        /* Centraliza o texto */
    }

    .slogan {
        text-align: center;
        /* Centraliza o slogan */
        font-size: 14px;
    }

    .form-floating {
        margin-bottom: 15px;
        /* Reduz o espaçamento entre campos */
    }

    .btn-login {
        width: 100%;
        /* Botão ocupa toda a largura */
        font-size: 16px;
        /* Reduz o tamanho da fonte */
        padding: 12px;
        /* Ajusta o padding */
    }

    .forgoten {
        flex-direction: column;
        /* Links ficam em coluna */
        align-items: center;
        gap: 10px;
        text-align: center;
    }

    .right-content {
        align-items: center;
        padding: 20px 0;
    }

    .image-logo img {
        max-width: 200px;
        /* Ajusta o tamanho do logo */
    }

    .right-footer {
        position: static;
        /* Remove o posicionamento absoluto */
        width: 100%;
        /* Ajusta para caber na tela */
        margin-top: 20px;
        text-align: center;
        flex-direction: column;
        /* Coloca os elementos em coluna */
        gap: 10px;
    }

    .social-media-icons {
        justify-content: center;
        gap: 10px;
    }

    .social-media-text {
        font-size: 14px;
        text-transform: none;
    }
}

@media screen and (max-width: 1440px) and (max-height: 900px) {
    .right-content {
        display: flex;
        flex-direction: column;
        width: 90%;
        height: 100%;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .image-logo img {
        max-width: 70%;
        display: block;
        margin: 0 auto;
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 900px) and (max-height: 1156px) {
    .right-content {
        display: flex;
        flex-direction: column;
        width: 90%;
        height: 100%;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .image-logo img {
        max-width: 70%;
        display: block;
        margin: 0 auto;
        margin-bottom: 80px;
    }
}


@media screen and (max-width: 800px) and (max-height: 1236px) {
    .right-content {
        display: flex;
        flex-direction: column;
        width: 90%;
        height: 100%;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .image-logo img {
        max-width: 70%;
        display: block;
        margin: 0 auto;
        margin-bottom: 80px;
    }
}


@media screen and (max-width: 915px) and (max-height: 1792px) {
    .right-content {
        display: flex;
        flex-direction: column;
        width: 90%;
        height: 100%;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .image-logo img {
        max-width: 70%;
        display: block;
        margin: 0 auto;
        margin-bottom: 80px;
    }
}