/* login.css */
body {
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: #fbfbfb;
    overflow-x: hidden;
}

h1 {
    color: #333;
}

p {
    font-size: 1rem;
    color: #666;
}


.container {
    display: flex;
    justify-content: space-between;
    height: 98vh;
    overflow: hidden;
}

.container-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    justify-content: space-between;
    width: 100%;
}

.imagem-login {
    width: 100%;
    object-fit: cover;
    object-position: bottom;
    border-radius: 20px;
}

.login-navigation {
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Estilo do botão */
button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #2F2F2F;
    /* Fundo escuro */
    color: white;
    /* Texto branco */
    border: none;
    /* Sem bordas */
    border-radius: 5px;
    /* Bordas arredondadas */
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Sombra leve */
    gap: 16px;
    /* Espaçamento entre o ícone e o texto */
}

/* Adicionando hover */
button:hover {
    background-color: #404040;
    /* Fundo mais claro */
}

/* Estilo do ícone dentro do botão */
button img {
    width: 20px;
    /* Tamanho do ícone */
    height: 20px;
}

.button-login {
    display: flex;
    justify-content: center;
}

.title-mobile {
    display: none;
}

@media only screen and (max-width: 1024px) {
    button {
        padding: 10px 15px;
        background-color: #020c14;
        font-size: 14px;
    }

    .imagem-login,
    .hidden-mobile,
    .video-login {
        display: none;
    }

    .title-mobile {
        display: block;
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .container-login {
        padding: 20px;
        width: 100%;
        justify-content: center;
    }
    
    .login-navigation {
        gap: 30px;
        width: 100%;
        max-width: 400px;
    }
    
    #logo-init {
        width: 80% !important;
        max-width: 300px;
    }
    
    p {
        font-size: 0.95rem;
        padding: 0 20px;
    }

}

@media only screen and (max-width: 600px) {
    .title-mobile {
        font-size: 1.3rem;
    }
    
    button {
        padding: 8px 12px;
        font-size: 13px;
        width: 100%;
        max-width: 320px;
    }
    
    p {
        font-size: 0.9rem;
    }
    
    footer p {
        font-size: 0.8rem;
    }
}


.video-login {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: bottom;
    border-radius: 20px;
}