.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: 70%;
    justify-content: 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: 600;
    text-transform: uppercase;
}

.cta {
    font-weight: 800;
    font-size: 50px;
    text-align: left;
    padding-bottom: 50px;
}

.input-control input {
    border: 1px solid;
}

.forgoten {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.forgoten a {
    text-decoration: none;
    color: black;
    cursor: pointer;
    padding: 15px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
}

.forgoten a:hover {
    background-color: black;
    color: white;
    padding: 15px;
    transition: 0.5s ease-in-out;
}

.btn-login {
    background-color: #f7d935;
    text-transform: uppercase;
    font-weight: 700;
    width: 40%;
    margin: 0 auto;
    margin-top: 30px;
    padding: 15px;
    transition: 0.8s ease-in-out;
}

.btn-login:hover {
    background-color: #202020;
    color: white;
    transition: 0.8s ease-in-out;
}

/* 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;
}

.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: 80%;
        display: block;
        margin: 0 auto;
        margin-bottom: 80px;
    }
}
